上一页 1 ··· 7 8 9 10 11
摘要: 一个字的字体颜色可能有同时存在多种,颜色像背景那样有过度效果 ,目前兼容性还不是很好 background:#fff; background:-webkit-linear-gradient(left, blue, #FF302D); background: -o-linear-gradient(ri 阅读全文
posted @ 2018-04-19 12:31 豆豆飞 阅读(504) 评论(0) 推荐(0) 编辑
摘要: function noScroll(flag){ var mo=function(e){e.preventDefault()}; flag ? stop(mo) : move(mo);} /***禁止滑动***/function stop(mo){ document.body.style.overf 阅读全文
posted @ 2018-04-19 12:28 豆豆飞 阅读(122) 评论(0) 推荐(0) 编辑
摘要: var canvas = document.getElementById("cas"); var ctx = canvas.getContext("2d"); resize(); window.onresize = resize; function resize() { canvas.width = 阅读全文
posted @ 2018-04-19 12:22 豆豆飞 阅读(285) 评论(0) 推荐(0) 编辑
摘要: (function(window,document,undefined){ var hearts = []; window.requestAnimationFrame = (function(){ return window.requestAnimationFrame || window.webki 阅读全文
posted @ 2018-04-19 11:55 豆豆飞 阅读(587) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/vipzhou/p/6519552.html 1、实现图片的预加载 (1)用background 这样只需加载一遍 (2) 推迟预加载时间 function preloader(){ if(document.getElementById){ docum 阅读全文
posted @ 2018-04-19 11:44 豆豆飞 阅读(155) 评论(0) 推荐(0) 编辑
摘要: (1)computed是响应式的,methods并非响应式。 (2)computed是带缓存的 (3)computed中的成员可以只定义一个函数作为只读属性,也可以定义get/set变成可读写属性,这点是methods中的成员做不到的 (4)computed是以对象的属性方式存在的,在视图层直接调用 阅读全文
posted @ 2018-04-19 11:35 豆豆飞 阅读(244) 评论(0) 推荐(0) 编辑
摘要: es6的... (1):函数rest参数和扩展 sum1(...sum){//传多个参数 let total=0; for(var i of sum){ total+=i; } console.log(`${total}`) } sum1(1,2,'',4,5) let sum2=(...sum)= 阅读全文
posted @ 2018-01-16 11:52 豆豆飞 阅读(83) 评论(0) 推荐(0) 编辑
摘要: 命名路由和命名视图 1)命名路由+传参 <router-link :to="{name:'test1'}">命名路由</router-link> //**注意:1、‘:to’ 既 to前必加: 2、后面的名字必须加‘’ <router-link :to="{name:'test1',params:{ 阅读全文
posted @ 2018-01-16 11:49 豆豆飞 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 编程式路由 通过js实现也面跳转 $router.push('name') $router.push({path:'name'}) $router.push({path:'name?a=123'})或者$router.push({path:'name',query:{a:123}}) $router 阅读全文
posted @ 2018-01-16 11:47 豆豆飞 阅读(240) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11