摘要: .VPNav.no-sidebar[data-v-4da33ef2] { -webkit-backdrop-filter: saturate(50%) blur(8px); backdrop-filter: saturate(50%) blur(8px); background: rgba(255, 阅读全文
posted @ 2022-08-09 19:03 13522679763-任国强 阅读(16) 评论(0) 推荐(0) 编辑
摘要: .text-ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .multiline-ellipsis { overflow: hidden; text-overflow: ellipsis; di 阅读全文
posted @ 2022-06-02 17:32 13522679763-任国强 阅读(141) 评论(0) 推荐(0) 编辑
摘要: /*! Hammer.JS - v2.0.8 - 2016-04-23 * http://hammerjs.github.io/ * * Copyright (c) 2016 Jorik Tangelder; * Licensed under the MIT license */ !function 阅读全文
posted @ 2022-06-01 16:10 13522679763-任国强 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, 阅读全文
posted @ 2022-06-01 16:10 13522679763-任国强 阅读(180) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, 阅读全文
posted @ 2022-06-01 15:52 13522679763-任国强 阅读(54) 评论(0) 推荐(0) 编辑
摘要: .container { width: 100%; padding-left: 15px; padding-right: 15px; margin-left: auto; margin-right: auto; } /*sm*/ @media (min-width: 576px) { .contai 阅读全文
posted @ 2022-06-01 10:14 13522679763-任国强 阅读(149) 评论(0) 推荐(0) 编辑
摘要: ;(function(){ // 判断缩放比 解决1px 像素边框问题 var docEl = document.documentElement var viewportEl = document.querySelector('meta[name="viewport"]') var dpr = wi 阅读全文
posted @ 2022-06-01 10:13 13522679763-任国强 阅读(37) 评论(0) 推荐(0) 编辑
摘要: gulp学习记录npm init -y yarn add gulp -D 修改 package.json "scripts": { "build": "gulp" }, // 查看版本 npx gulp --version 新建 gulpfile.js // 重命名 gulp-rename // 压 阅读全文
posted @ 2022-05-22 11:04 13522679763-任国强 阅读(55) 评论(0) 推荐(0) 编辑
摘要: // 作用域插槽 <template> <div class="cateogry"> <h3>{{title}}分类</h3> <slot :games="games"> 我是默认的一些内容</slot> </div> </template> <script> export default { na 阅读全文
posted @ 2022-03-14 23:18 13522679763-任国强 阅读(19) 评论(0) 推荐(0) 编辑
摘要: // 具名插槽 <div class="cateogry"> <h3>{{title}}分类</h3> <!-- 定义插槽 --> <slot name="center">这里填写默认值1</slot> <slot name="footer">这里填写默认值2</slot> </div> <Cate 阅读全文
posted @ 2022-03-14 18:56 13522679763-任国强 阅读(30) 评论(0) 推荐(0) 编辑