摘要:
一、flex基础属性:http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html 1、display:flex; 行内元素:display:inline-flex webkit内核:display:-webkit-flex; display:fl 阅读全文
摘要:
1、早睡 ,晚上尽量不吃饭 2、把公司的vue项目看了,看一遍element-ui,再学一遍vue-music 3、看一下javascript的设计模式 学习网址:后续会整理成笔记 https://juejin.im/entry/58c280b1da2f600d8725b887 4、js的进阶 学习 阅读全文
摘要:
1、微信开发者工具的下载:https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html?t=201714 2、git下生成秘钥:https://zhidao.baidu.com/question/201291934887470278 阅读全文
摘要:
function GetQueryString(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if (r != 阅读全文
摘要:
function setLocalJson(name, json) { json = JSON.stringify(json); localStorage.setItem(name, json)}function getLocalJson(name) { var newJson = localSto 阅读全文
摘要:
1、单个的时候 阅读全文
摘要:
window.onload = function() { /* 加时间戳 ==>最好是时间戳 var timestamp = Date.parse(new Date()); var timestamp = (new Date()).valueOf(); var timestamp=new Date( 阅读全文
摘要:
一个字的字体颜色可能有同时存在多种,颜色像背景那样有过度效果 ,目前兼容性还不是很好 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是以对象的属性方式存在的,在视图层直接调用 阅读全文