requestAnimationFrame取代setTimeout
requestAnimationFrame的功能和setTimeout类似,setTimeout的最小间隔值可以是4ms但是这样会严重的掉帧就是会卡。所以推荐最小值是16.7ms,既能保证最小间隔又能保证不掉帧流畅运行。 如果我想把时间间隔突破到16.7ms以下又能保证动画流畅呢?欢迎使用requestAnimat…
614 2018-01-24 去围观css强制换行、禁止换行、文本省略符号
css 强制 禁止 换行 省略 强制换行 1、word-break: break-all; 只对英文起作用,以字母作为换行依据。 2、word-wrap: break-word; 只对英文起作用,以单词作为换行依据。 3、white-space: pre-wrap; 只对中文起作用,强制换行。 禁止换行 white-spac…
631 2018-01-23 去围观解决:fatal: refusing to merge unrelated histories
当pull失败是,执行 git pull origin master --allow-unrelated-histories
511 2018-01-21 去围观node.js实现token身份验证
node token node.js node 《token理解、学习》 安装必要模块: //koa-jwt 中间件,使用后为每个路由添加校验方法,就不需要一个个手动添加 npm install -S koa-jwt //生成token npm install -S jsonwebtoken@9.0.0 //对应node版本v12.20.2至…
1,141 2018-01-18 去围观