上一页 1 2 3 4 5 6 7 ··· 13 下一页
摘要: 这里只是简单记录Echarts使用中遇到的一些差异问题,仅代表个人观点,如有雷同,不慎荣幸 v3.* VS v4.* xAxis.axisLabel 中的边框设置 series[i]-pie 中的hoverOffset 未完待续。。。 阅读全文
posted @ 2018-05-05 16:41 likwin 阅读(1699) 评论(0) 推荐(0) 编辑
摘要: <script type="text/javascript"> var json = {}; var key = 'Lik' ; json[key] = "superman"; alert(json.name); </script> 阅读全文
posted @ 2018-03-07 10:50 likwin 阅读(267) 评论(0) 推荐(0) 编辑
摘要: media query 是响应式设计的核心,它能够和浏览器进行沟通,告诉浏览器页面如何呈现 @media screen and (max-width:980px){ ... } @media screen and (min-width:980px) and (max-width:1200px){ . 阅读全文
posted @ 2018-03-04 13:42 likwin 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 先执行如下命令: lsof -i:端口号 会有类似下面的结果: COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME WebProces 42624 davidzhang 5u IPv4 0x907152bbf7b2a875 0t0 TCP local 阅读全文
posted @ 2018-01-26 17:49 likwin 阅读(453) 评论(0) 推荐(0) 编辑
摘要: function urlToJson(){ var ret = {}; window.location.search.substr(1).replace(/(\w+)=(\w+)/ig, function(a, b, c){ret[b] = unescape(c);}); return ret;}; 阅读全文
posted @ 2018-01-16 16:31 likwin 阅读(101) 评论(0) 推荐(0) 编辑
摘要: L.MapAPI各种类中的核心部分,用来在页面中创建地图并操纵地图.使用 example// initialize the map on the "map" div with a given center and zoom var map = L.map('map', { center: [51.5 阅读全文
posted @ 2017-12-13 20:56 likwin 阅读(476) 评论(0) 推荐(0) 编辑
摘要: ;(function (name, context, factory) { // Supports UMD. AMD, CommonJS/Node.js and browser context if (typeof module !== "undefined" && module.exports) 阅读全文
posted @ 2017-12-06 10:58 likwin 阅读(1488) 评论(0) 推荐(0) 编辑
摘要: div { width : calc(~"100% - 30px"); } 阅读全文
posted @ 2017-11-24 15:30 likwin 阅读(169) 评论(0) 推荐(0) 编辑
摘要: http://es6.ruanyifeng.com/#docs/string#repeat 阅读全文
posted @ 2017-11-07 18:37 likwin 阅读(191) 评论(0) 推荐(0) 编辑
摘要: includes():返回布尔值,表示是否找到了参数字符串。startsWith():返回布尔值,表示参数字符串是否在原字符串的头部。endsWith():返回布尔值,表示参数字符串是否在原字符串的尾部。 支持第二个参数,表示开始搜索的位置。 原链接:http://es6.ruanyifeng.co 阅读全文
posted @ 2017-11-07 18:29 likwin 阅读(137) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 13 下一页