随笔分类 -  优化技巧

JS,ES6等
摘要:1、String转化为Number +'45' //number 2、Number转化为String ' ' +4 //string 3、float转Int ~~3.14159 // => 3 ~~5.678 // => 5 4、颜色随机色 ('00000'+(0|Math.random()*(1< 阅读全文
posted @ 2017-09-22 11:59 浮生如梦似离殇 阅读(165) 评论(0) 推荐(0)
摘要:1、-webkit-font-smoothing 字体锯齿 div { -webkit-font-smoothing: antialiased; } 2、css实现不换行、自动换行、强制换行 //不换行 white-space:nowrap; //自动换行 word-wrap: break-word 阅读全文
posted @ 2017-09-21 10:12 浮生如梦似离殇 阅读(222) 评论(0) 推荐(0)