摘要: https://www.jianshu.com/p/0fb563e04f61 阅读全文
posted @ 2019-10-30 16:08 皓ma 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 移动端rem flexible方案 一、px 自动转换为rem sublim Text3 下载本项目,比如:git clone https://github.com/flashlizi/cssrem 进入packages目录(在Sublime安装目录下找文件夹):Sublime Text -> Pr 阅读全文
posted @ 2019-08-09 17:24 皓ma 阅读(365) 评论(0) 推荐(0) 编辑
摘要: 使用 vue-clipboard2 复制到粘贴板 1.安装vue-clipboard2 npm install --save-dev vue-clipboard2 2.main.js中添加 //复制到粘贴板插件 import VueClipboard from 'vue-clipboard2' Vu 阅读全文
posted @ 2019-08-01 11:53 皓ma 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: es6快速排序 let qsort = fn =>([x,...xn]) => x == null ? [] : [ ...qsort(fn)(xn.filter(a=>fn(a,x))), x, ...qsort(fn)(xn.filter(a=>!fn(a,x))) ] es5写法:consol 阅读全文
posted @ 2019-07-26 17:00 皓ma 阅读(2605) 评论(0) 推荐(0) 编辑
摘要: let data = [ { id: 201801, name: '张三', age: 15, }, { id: 201804, name: 'John', age: 18, }, { id: 201802, name: '李四', age: 18, }, { id: 201801, name: ' 阅读全文
posted @ 2019-07-26 16:56 皓ma 阅读(334) 评论(0) 推荐(0) 编辑
摘要: // 从小到大顺序排序 minSort (arr) { var min for (var i = 0; i < arr.length; i++) { for (var j = i; j < arr.length; j++) { if (arr[i].coupon.faceMoney > arr[j] 阅读全文
posted @ 2019-07-26 15:49 皓ma 阅读(4501) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/8350b611e5bb 阅读全文
posted @ 2019-07-12 17:52 皓ma 阅读(1800) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/c028e4cfc8c8 阅读全文
posted @ 2019-07-03 18:41 皓ma 阅读(178) 评论(1) 推荐(0) 编辑
摘要: <!DOCTYPE HTML><html> <head> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1, minimum-scale=1, user-scalable=no,uc-fitscreen=yes" ch 阅读全文
posted @ 2019-07-02 15:16 皓ma 阅读(767) 评论(0) 推荐(0) 编辑
摘要: v-bind:class="index== num? activeClass : ''"index是循环数组的索引,num是点击获取的索引。 阅读全文
posted @ 2019-07-02 15:10 皓ma 阅读(2680) 评论(0) 推荐(0) 编辑