摘要:
一个字的字体颜色可能有同时存在多种,颜色像背景那样有过度效果 ,目前兼容性还不是很好 background:#fff; background:-webkit-linear-gradient(left, blue, #FF302D); background: -o-linear-gradient(ri 阅读全文
摘要:
function noScroll(flag){ var mo=function(e){e.preventDefault()}; flag ? stop(mo) : move(mo);} /***禁止滑动***/function stop(mo){ document.body.style.overf 阅读全文
摘要:
var canvas = document.getElementById("cas"); var ctx = canvas.getContext("2d"); resize(); window.onresize = resize; function resize() { canvas.width = 阅读全文
摘要:
(function(window,document,undefined){ var hearts = []; window.requestAnimationFrame = (function(){ return window.requestAnimationFrame || window.webki 阅读全文
摘要:
https://www.cnblogs.com/vipzhou/p/6519552.html 1、实现图片的预加载 (1)用background 这样只需加载一遍 (2) 推迟预加载时间 function preloader(){ if(document.getElementById){ docum 阅读全文
摘要:
(1)computed是响应式的,methods并非响应式。 (2)computed是带缓存的 (3)computed中的成员可以只定义一个函数作为只读属性,也可以定义get/set变成可读写属性,这点是methods中的成员做不到的 (4)computed是以对象的属性方式存在的,在视图层直接调用 阅读全文