上一页 1 ··· 7 8 9 10 11 12 13 14 下一页
摘要: 当我们在Vue.js项目中引用图片时,关于图片路径有以下几种情形: 使用一: 使用二: 当我们需要在js代码里面写图片路径的时候,如果我们在data里面写,webpack只会把它当做字符串处理从而找不到图片地址, /*错误写法* /imgUrl:'../assets/logo.png' 在data里 阅读全文
posted @ 2019-07-25 16:36 CatherLee 阅读(9239) 评论(0) 推荐(0) 编辑
摘要: 移动端web缩放有两种: 1.双击缩放; 2.双指手势缩放。 在iOS 10以前,iOS和Android都可以通过一行meta标签来禁止页面缩放 <meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user 阅读全文
posted @ 2019-07-16 17:07 CatherLee 阅读(1629) 评论(0) 推荐(0) 编辑
摘要: ios端兼容input光标高度处理 在最近的项目中遇到一个问题,input输入框光标,在安卓手机上显示没有问题,但是在苹果手机上 当点击输入的时候,光标的高度和父盒子的高度一样。造成的原因就是给父盒子添加了height和line-height 当点击输入的时候,光标的高度就自动和父盒子的高度一样了。 阅读全文
posted @ 2019-07-16 16:25 CatherLee 阅读(1703) 评论(0) 推荐(0) 编辑
摘要: 因为 clipboard.js 兼容性受限 阅读全文
posted @ 2019-05-16 16:44 CatherLee 阅读(122) 评论(0) 推荐(0) 编辑
摘要: cat /usr/local/opt/nginx/ //nginx路径 cd /usr/local/opt/nginx/html //localhost的指向 ln -s ~/Documents docs //建立软链示例 eg: 在文件夹中建立软链接(类似于win系统的快捷方式) 如下:桌面上的一 阅读全文
posted @ 2019-03-13 14:19 CatherLee 阅读(2664) 评论(0) 推荐(0) 编辑
摘要: 常用 ismobilejs https://www.npmjs.com/package/ismobilejs 函数库 Lodash(推荐):github.com/lodash/loda… Underscore:underscorejs.org/ Ramda:github.com/ramda/ramd 阅读全文
posted @ 2019-03-08 17:30 CatherLee 阅读(565) 评论(1) 推荐(0) 编辑
摘要: https://cli.vuejs.org/zh/guide/build-targets.html#%E5%BA%93 https://github.com/lipis/flag-icon-css 阅读全文
posted @ 2019-03-05 17:07 CatherLee 阅读(1232) 评论(0) 推荐(0) 编辑
摘要: 一、for循环 1 (function() { 2 for(var i=0, len=demoArr.length; i<len; i++) { 3 if (i == 2) { 4 // return; // 函数执行被终止 5 // break; // 循环被终止 6 continue; // 循 阅读全文
posted @ 2019-03-01 17:32 CatherLee 阅读(2447) 评论(0) 推荐(0) 编辑
摘要: 法一: charles代理打开 手机电脑连接同一个局域网下 手机wifi手动设置代理(host改成电脑的本机IP,端口8888) 谷歌调试: 打开谷歌浏览器,chrome://inspect/#device https://juejin.cn/post/7076399416956944414 法二: 阅读全文
posted @ 2019-03-01 16:47 CatherLee 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 1.创建一个数组,判断数组中是否存在某个值 var newarr = [ { num: 1, val: 'ceshi', flag: 'aa' }, { num: 2, val: 'ceshi2', flag: 'aa2' } ] console.log(newarr.filter(item => 阅读全文
posted @ 2019-03-01 16:15 CatherLee 阅读(7262) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 下一页