2025年1月2日
摘要: 当需要为 当前激活的 router-link 添加样式时 通常会使用 router-link-active 本次复习重新学习了一下 router-link-active & router-link-exact-active router-link-active 当你多重嵌套路由时 嵌套的多个页面都会 阅读全文
posted @ 2025-01-02 01:07 贲风 阅读(4) 评论(0) 推荐(0) 编辑
  2024年12月28日
摘要: animation 属性是 【animation-name】【animation-duration】【animation-timing-function】【animation-delay】【animation-iteration-count】【animation-direction】【animati 阅读全文
posted @ 2024-12-28 16:23 贲风 阅读(5) 评论(0) 推荐(0) 编辑
  2024年12月6日
摘要: 1. 滚动捕获 在元素中滚动不会在中间停止 一定会停在元素前方后或后方 - 需要在父元素中设置 scroll-snap-type: none | [ x | y | block | inline | both ] [ mandatory | proximity ] eg: scroll-snap-t 阅读全文
posted @ 2024-12-06 22:45 贲风 阅读(1) 评论(0) 推荐(0) 编辑
  2024年11月26日
摘要: 1. URL 格式 与 http 和 https 类似 websocket 分为 ws 和 wss 两种 具体实例如下 1/ ws://example.com/socketserver 2/ wss://example.com/socketserver 2. 实例化 let ws = new Web 阅读全文
posted @ 2024-11-26 00:02 贲风 阅读(6) 评论(0) 推荐(0) 编辑
  2024年11月11日
摘要: const encodedData = window.btoa("Hello, world"); // 编码字符串 const decodedData = window.atob(encodedData); // 解码字符串 阅读全文
posted @ 2024-11-11 16:08 贲风 阅读(149) 评论(0) 推荐(0) 编辑
  2024年10月18日
摘要: 1. multipart/form-data 1/ 拿到 file 文件 2/ const formData = new FormData() 3/ formData.append('file', file) 参数名 ‘file’ 与后端一致即可 4/ 正常请求 设置请求头 headers: { ' 阅读全文
posted @ 2024-10-18 01:02 贲风 阅读(26) 评论(0) 推荐(0) 编辑
  2024年10月7日
摘要: animate(keyframes,options) 1. 关键帧 1/ 如果是过渡动画 直接就写效果 eg: { transform: 'rotate(360deg)' } 2/ 关键帧数组 使用数组报过对象 eg: [{transform: 'translateX(400px)'},{trans 阅读全文
posted @ 2024-10-07 17:38 贲风 阅读(361) 评论(0) 推荐(0) 编辑
  2024年10月4日
摘要: -S 和 -D 是两个不同的标志,它们分别用于指定包的安装类型: -S 或 --save: 这个标志用于将包添加到项目依赖中,并且会保存到 package.json 文件的 dependencies 部分。这些依赖是运行项目所必需的,通常在项目的生产环境中也会被使用。 -D 或 --dev: 这个标 阅读全文
posted @ 2024-10-04 17:23 贲风 阅读(22) 评论(0) 推荐(0) 编辑
  2024年9月2日
摘要: 监听 copy 事件 navigator.clipboard.writeText 写入剪切板内容 eg: navigator.clipboard.writeText('具体内容') navigator.clipboard.readText 读取剪切板内容 // 这里是需要用户选择的 eg: navi 阅读全文
posted @ 2024-09-02 11:30 贲风 阅读(11) 评论(0) 推荐(0) 编辑
  2024年7月16日
摘要: 该属性在Img 标签中无效 修正: 将img 标签改为块级元素 就可以生效了 应该是元素类型的问题 阅读全文
posted @ 2024-07-16 21:36 贲风 阅读(5) 评论(0) 推荐(0) 编辑