2023年2月21日

摘要: angular2以上自定义指令 放大镜效果预览图片 效果依赖jquery,需提前安装 创建指令文件my-preview.directive.ts import { Directive, Input, Output, EventEmitter, HostListener, OnInit, OnDest 阅读全文
posted @ 2023-02-21 14:19 2019liyuan 阅读(61) 评论(0) 推荐(0) 编辑
 

2020年11月12日

摘要: ## css3 filter滤镜属性 注:ie浏览器暂不支持### 1.灰度 grayscale(value) 值为百分比,在0%到100%之间,值为100%则完全转为灰度图像,值为0%图像无变化,默认值是0%; ### 2.色相 hue-rotate(value) 值为deg角度范围无限制,色相环 阅读全文
posted @ 2020-11-12 14:43 2019liyuan 阅读(105) 评论(0) 推荐(0) 编辑
 

2020年11月11日

摘要: <input type="text" v-model="phone" ref="input"> 使用ref选中 在生命周期mounted中 mounted(){ this.$nextTick(() => { this.$refs.input.focus() }) } 阅读全文
posted @ 2020-11-11 15:22 2019liyuan 阅读(434) 评论(0) 推荐(1) 编辑
 
摘要: 不可直接使用变量路径 ,会报错 html: ~~~ <img :src="abIndex == 0 ? './imgs/img.png':'./imgs/img1.png'" alt=""> ~~~ 需要用import引入 写法①: js: `import img from "@/assets/im 阅读全文
posted @ 2020-11-11 15:17 2019liyuan 阅读(1187) 评论(0) 推荐(0) 编辑
 
摘要: ### 1格式化时间转时间戳 苹果手机中不可使用 `new Date('2020-09-10 12:10:10')` 他不认识'-',需要将其转换为'/' `new Date('2020-09-10 12:10:10'.replace(/\-/g, '/'))` ### 2苹果手iphoneX 安全 阅读全文
posted @ 2020-11-11 15:03 2019liyuan 阅读(672) 评论(0) 推荐(0) 编辑