01 2020 档案

摘要:(function () { const ua = navigator.userAgent; const android = ua.match(/Android \d\.\d/); // const ios = ua.match(/iPhone OS \d.\d.\d/); const androidVersion = android && android[0].match(/\d.\d/) && 阅读全文
posted @ 2020-01-17 19:29 创业男生 阅读(420) 评论(0) 推荐(0) 编辑
摘要:html, body, ul, li, p, h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0; } ::-webkit-scrollbar { display: none; } ul, li { list-style: none; } html { height: 100%; min-height: 100%; } b... 阅读全文
posted @ 2020-01-17 19:29 创业男生 阅读(123) 评论(0) 推荐(0) 编辑
摘要:<template> <div class="sec-alert"> <div :class="{ animated: isAnimating }"> <div class="line" v-text="tips[0]"></div> <div class="line" v-text="tips[1]"></div> </div> </div> </templat 阅读全文
posted @ 2020-01-17 19:23 创业男生 阅读(3447) 评论(0) 推荐(0) 编辑
摘要:验证码 {{seconds}}s 阅读全文
posted @ 2020-01-17 19:19 创业男生 阅读(234) 评论(0) 推荐(0) 编辑
摘要:查看性能的参数说明: var t = performance.timing; // 详情参见 performance API。 (1). 白屏时间 -> css加载完成时间戳 - t.fetchStart (2). 首屏/用户可操作时间 -> t.domContentLoadedEventEnd - 阅读全文
posted @ 2020-01-03 15:52 创业男生 阅读(539) 评论(0) 推荐(0) 编辑