上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: 节流在于,短时间间隔内无法连续调用,只有上一次触发结束后才能调用 export const Throttle = (fn,t)=>{ let timer = null; let delayTime = t || 200; let initTime; return function(){ let ar 阅读全文
posted @ 2019-07-22 14:24 你风致 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 防抖在于,高频触发事件,我只执行最后一次。 export const Debounce = (fn, t) => { let timer = null; let delayTime = t || 600;//这里是延迟时间 return function(){ let args = argument 阅读全文
posted @ 2019-07-22 13:50 你风致 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Web Notifications API 使页面可以发出通知,通知将被显示在页面之外的系统层面上(通常使用操作系统的标准通知机制,但是在不同的平台和浏览器上的表现会有差异) Notification.requestPermission( function(status) { //让用户进行通知权限 阅读全文
posted @ 2019-07-16 10:28 你风致 阅读(371) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> .flow-colorful { max-width: 600px; height: 150px; backgrou 阅读全文
posted @ 2019-07-03 10:01 你风致 阅读(584) 评论(0) 推荐(0) 编辑
摘要: Grid布局:有兼容,IE(都别看我啊)display:grid;display:inline-grid; 属性:grid-template-columns:定义每一列的列宽grid-template-rows:定义每一行的行高有如下用法:1. grid-template-columns: 100p 阅读全文
posted @ 2019-07-02 15:07 你风致 阅读(267) 评论(0) 推荐(0) 编辑
摘要: <input placeholder="填写身份证号" v-model="id_card"/> watch: { ['id_card'](val) { this.$nextTick(() => { this.id_card = val.replace(/\s/g,'').replace(/....( 阅读全文
posted @ 2019-06-14 17:51 你风致 阅读(2031) 评论(0) 推荐(0) 编辑
摘要: 以下四项一起写,做兼容:input::-webkit-input-placeholder { /* WebKit browsers */ color: #dddddd;}input:-moz-placeholder { /* Mozilla Firefox 4 to 18 */ color: #dd 阅读全文
posted @ 2019-06-04 16:12 你风致 阅读(3619) 评论(0) 推荐(0) 编辑
摘要: 为了方便引入了jquery: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <style> #box{width:600px;margin: 0 auto;overflow-x: 阅读全文
posted @ 2019-06-03 17:56 你风致 阅读(2843) 评论(0) 推荐(0) 编辑
摘要: 基于:var canvas = document.getElementById('id');var ctx = canvas.getContext('2d'); 1.样式:ctx.fillStyle = 'color'-填充色ctx.strokeStyle = 'color'-线色ctx.lineW 阅读全文
posted @ 2019-06-03 16:03 你风致 阅读(3407) 评论(0) 推荐(0) 编辑
摘要: git branch 分支名:创建分支 git checkout 分支名:切换到分支 git checkout -b 分支名:创建并切换到分支 git merge 分支名:将此分支名合并到当前操作的分支上 git rebase 分支名:将当前操作的分支合并到分支名上 git checkout 提交号 阅读全文
posted @ 2019-05-21 18:00 你风致 阅读(193) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页