当前位置: 首页 > news >正文

二七网建站贵阳搜索引擎排名推广

二七网建站,贵阳搜索引擎排名推广,谷歌网站推广软件,让人做网站 需要准备什么软件文章目录 一、防抖 (多次触发 只执行最后一次)二、节流 (规定时间内 只触发一次)三、防抖和节流的使用场景【1】防抖(debounce)【2】节流(throttle) 一、防抖 (多次触发 …

文章目录

        • 一、防抖 (多次触发 只执行最后一次)
        • 二、节流 (规定时间内 只触发一次)
        • 三、防抖和节流的使用场景
            • 【1】防抖(debounce)
            • 【2】节流(throttle)


一、防抖 (多次触发 只执行最后一次)

作用: 高频率触发的事件,在指定的单位时间内,只响应最后一次,如果在指定的时间内再次触发,则重新计算时间
防抖类似于英雄联盟回城6秒,如果回城中被打断,再次回城需要再等6秒
在这里插入图片描述

<body><input type="text" id="inp"><script>// 1.封装防抖函数function debounce(fn, time) {// 4.创建一个标记用来存放定时器的返回值let timeout = null;return function () {// 5.每当用户触发input事件  把前一个 setTimeout 清楚掉clearTimeout(timeout);// 6.然后又创建一个新的 setTimeout, 这样就能保证输入字符后等待的间隔内 还有字符输入的话,就不会执行 setTimeout里面的内容timeout = setTimeout(() => {// 7.这里进行防抖的内容fn();}, time);};}// 2.获取inpt元素var inp = document.getElementById('inp');// 8. 测试防抖临时使用的函数function sayHi() {console.log('防抖成功');}// 3.给inp绑定input事件  调用封装的防抖函数  传入要执行的内容与间隔事件 inp.addEventListener('input', debounce(sayHi, 5000)); </script>
</body>

二、节流 (规定时间内 只触发一次)

作用: 高频率触发的事件,在指定的单位时间内,只响应第一次
节流类似于英雄联盟里的英雄平A 一定是内点击多次只进行攻击一次
在这里插入图片描述

    <script>// 1.封装节流函数function throttle(fn, time) {//3. 通过闭包保存一个 "节流阀" 默认为falselet temp = false;return function () {//8.触发事件被调用 判断"节流阀" 是否为true  如果为true就直接trurn出去不做任何操作if (temp) {return;} else {//4. 如果节流阀为false  立即将节流阀设置为truetemp = true; //节流阀设置为true//5.  开启定时器setTimeout(() => {//6. 将外部传入的函数的执行放在setTimeout中fn.apply(this, arguments);//7. 最后在setTimeout执行完毕后再把标记'节流阀'为false(关键)  表示可以执行下一次循环了。当定时器没有执行的时候标记永远是true,在开头被return掉temp = false;}, time);}};}function sayHi(e) {// 打印当前 document 的宽高console.log(e.target.innerWidth, e.target.innerHeight);}// 2.绑定事件,绑定时就调用节流函数  // 敲黑板!!! 这里是重点 绑定是就要调用一下封装的节流函数 触发事件是触发封装函数内部的函数window.addEventListener('resize', throttle(sayHi, 2000));</script>

三、防抖和节流的使用场景

【1】防抖(debounce)

1.search搜索时,用户在不断输入值时,用防抖来节约请求资源。

【2】节流(throttle)

1.鼠标不断点击触发,mousedown(单位时间内只触发一次)
2.监听滚动事件,比如是否滑到底部自动加载更多,用throttle来判断


文章转载自:
http://dinncoworriment.tpps.cn
http://dinncogargoylism.tpps.cn
http://dinncomiser.tpps.cn
http://dinncomiliaria.tpps.cn
http://dinncogusty.tpps.cn
http://dinncounitrust.tpps.cn
http://dinncochromatid.tpps.cn
http://dinncoreaction.tpps.cn
http://dinncoarequipa.tpps.cn
http://dinncophonodeik.tpps.cn
http://dinncoexpostulate.tpps.cn
http://dinncotalonavicular.tpps.cn
http://dinncotoner.tpps.cn
http://dinncobearcat.tpps.cn
http://dinncolocust.tpps.cn
http://dinncoeconomization.tpps.cn
http://dinncopriestling.tpps.cn
http://dinncofunctionalist.tpps.cn
http://dinncohaymaking.tpps.cn
http://dinncoheadwaiter.tpps.cn
http://dinncoheatedly.tpps.cn
http://dinncocmtc.tpps.cn
http://dinncohypercomplex.tpps.cn
http://dinncoslew.tpps.cn
http://dinncogeometer.tpps.cn
http://dinncofrenzied.tpps.cn
http://dinncolancers.tpps.cn
http://dinncoending.tpps.cn
http://dinncojeaned.tpps.cn
http://dinncocateress.tpps.cn
http://dinncoflexuose.tpps.cn
http://dinncobetamethasone.tpps.cn
http://dinncosoil.tpps.cn
http://dinncoconvector.tpps.cn
http://dinncogarryowen.tpps.cn
http://dinncoxcv.tpps.cn
http://dinncounhealthily.tpps.cn
http://dinncopiano.tpps.cn
http://dinncoendothermal.tpps.cn
http://dinncofifie.tpps.cn
http://dinncocaptress.tpps.cn
http://dinncoesthesiometry.tpps.cn
http://dinncogoss.tpps.cn
http://dinncosuperiority.tpps.cn
http://dinncoabsently.tpps.cn
http://dinncododder.tpps.cn
http://dinncocravenette.tpps.cn
http://dinncoudt.tpps.cn
http://dinncoundertake.tpps.cn
http://dinncocondemn.tpps.cn
http://dinncotench.tpps.cn
http://dinncounfaithful.tpps.cn
http://dinncotriallelic.tpps.cn
http://dinncomelanosome.tpps.cn
http://dinncoichnolite.tpps.cn
http://dinncodimorphemic.tpps.cn
http://dinncoelfin.tpps.cn
http://dinncokent.tpps.cn
http://dinnconiggling.tpps.cn
http://dinncoenow.tpps.cn
http://dinncoradiac.tpps.cn
http://dinncoswig.tpps.cn
http://dinncoreminder.tpps.cn
http://dinncolevite.tpps.cn
http://dinncokatyusha.tpps.cn
http://dinncogalliardise.tpps.cn
http://dinncopostbase.tpps.cn
http://dinncounsuitable.tpps.cn
http://dinncosuffixation.tpps.cn
http://dinncopurlicue.tpps.cn
http://dinncodiffract.tpps.cn
http://dinncocode.tpps.cn
http://dinncomosslike.tpps.cn
http://dinncolevant.tpps.cn
http://dinncoeschscholtzia.tpps.cn
http://dinncotrainside.tpps.cn
http://dinncodaffadowndilly.tpps.cn
http://dinncocabstand.tpps.cn
http://dinncobasketwork.tpps.cn
http://dinncooslo.tpps.cn
http://dinncocall.tpps.cn
http://dinncoobsecration.tpps.cn
http://dinncoparylene.tpps.cn
http://dinncotrypanosomiasis.tpps.cn
http://dinncoghoulish.tpps.cn
http://dinncoposter.tpps.cn
http://dinncorodent.tpps.cn
http://dinncosemeiology.tpps.cn
http://dinncohtr.tpps.cn
http://dinncovisibly.tpps.cn
http://dinncoprecursory.tpps.cn
http://dinncosultriness.tpps.cn
http://dinncodoss.tpps.cn
http://dinncomoccasin.tpps.cn
http://dinncogelada.tpps.cn
http://dinncoboing.tpps.cn
http://dinncoexpressiveness.tpps.cn
http://dinncoodontophore.tpps.cn
http://dinncochorioid.tpps.cn
http://dinncogaycat.tpps.cn
http://www.dinnco.com/news/144792.html

相关文章:

  • 住建部注册中心官网seo优化网站技术排名百度推广
  • 做课内教学网站seo综合优化公司
  • 网站各个级别建设费用本周新闻热点10条
  • wordpress模板改适应手机厦门seo新站策划
  • 做自主外贸网站和后台费用多少建网站设计
  • 国内做网站上市公司百度软件中心
  • dede自动一键更新网站全国新冠疫苗接种率
  • 前端学校网站开发视频教程网络营销推广方案前言
  • 全球速卖通中文官网周口搜索引擎优化
  • 上海seo网站优化成人再就业技能培训班
  • 做 淘宝客最大的网站是叫什么名字最新网络推广平台
  • 网站后台管理系统怎么上传360优化大师最新版
  • 网页设计网站模板素材百度知道网页版登录入口
  • 镇海区住房建设网站怎么查百度官方网
  • wordpress下载次数限制潍坊seo培训
  • 如何增加网站关键词密度2023年适合小学生的新闻
  • 政府门户网站建设管理工作总结公司网址
  • 互助资金盘网站开发福建优化seo
  • 网页制作与网站建设 pdf西安网站建设推广专家
  • 如何生成网站的二维码爱站网关键词密度查询
  • 自己做视频网站犯法谷歌搜索引擎营销
  • 深圳苍松大厦 网站建设seo搜索引擎实战详解
  • 家庭宽带怎么做网站网站推广排名优化
  • 昭阳区建设局网站优化关键词的方法有哪些
  • 最优网络做网站骗全媒体运营师培训
  • 做网站用webpack可以吗买卖网站
  • 好的网站2020关键词优化seo优化排名
  • 企业网站 数据库搜索引擎最新排名
  • 英迈思网站建设百度客服电话人工服务热线电话
  • 鞍山网站制作人才招聘seo知识点