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/) &&
阅读全文
摘要: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...
阅读全文
摘要:<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
阅读全文
摘要:查看性能的参数说明: var t = performance.timing; // 详情参见 performance API。 (1). 白屏时间 -> css加载完成时间戳 - t.fetchStart (2). 首屏/用户可操作时间 -> t.domContentLoadedEventEnd -
阅读全文