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

如何做自己网站平台新站整站快速排名

如何做自己网站平台,新站整站快速排名,有新浪的域名怎么做网站,简要说明网站制作的基本步骤1)requestAnimationFrame是什么? 1.MDN官方解释 2.解析这段话: 1、那么浏览器重绘是指什么呢? ——大多数电脑的显示器刷新频率是60Hz,1000ms/6016.66666667ms的时间刷新一次 2、重绘之前调用指定的回调函数更新动画? ——requ…
1)requestAnimationFrame是什么?
1.MDN官方解释

在这里插入图片描述

2.解析这段话:

1、那么浏览器重绘是指什么呢?
——大多数电脑的显示器刷新频率是60Hz,1000ms/60=16.66666667ms的时间刷新一次
2、重绘之前调用指定的回调函数更新动画?
——requestAnimationFrame 会把每一帧中的所有 DOM 操作集中起来,在一次重绘或回流中 紧跟随浏览器的刷新频率 去完成操作。

2)基础用法
<script setup>
let animationRef
const goStart = () => {const cb = () => {// 写入DOM 操作会在每一次浏览器刷新之前执行❤requestAnimationFrame(cb)}// 开启动画animationRef = requestAnimationFrame(cb)
}
const goEnd = () => {// 取消动画cancelAnimationFrame(animationRef)
}
</script>
3)requestAnimationFrame的优点
1.传统实现JS动画

通常情况下,实现动画能使用css实现的就使用css,不能的css实现的再使用JS实现。
我们实现JS动画,会使用setTimeout和setInterval。
而setTimeout和setInterval的使用是存在问题的,导致丢帧。

①间隔时间不好确定,前面也提到大多数电脑的显示器刷新频率是60Hz,1000ms/60,定时器的间隔时间设置过长或者过短都无法匹配上刷新频率,推荐的最佳循环间隔17ms。
②MDN指出定时器实际延长时间比设定值长一些。常见的几种情况,嵌套超时、非活动标签的超时、追踪型脚本的节流、超时延迟等…一个浏览器的线程队列中任务
这里就不过多赘述,可以到以下链接阅读 https://developer.mozilla.org/zh-CN/docs/Web/API/setTimeout
在这里插入图片描述

其实就是当线程忙碌时,定时器会等待线程队列中的任务执行后再执行。
所以定时器动画,视觉上看来,就是一盹一盹…的效果。

2.requestAnimationFrame

而requestAnimationFrame由浏览器专门为动画提供的 API,就是为了解决这类问题,提升用户体验的。
且我们切换到其他页面时,requestAnimationFrame会暂停下来,直到我们回到该页面后,动画会从暂停的位置继续执行。

3.应用场景

在这里插入图片描述
会用一定卡顿,可以到我的github下载代码运行看效果。
https://github.com/wwaini/tao-vue3/tree/release240625

<template><div class="btn"><el-button @click="goStart">开始</el-button><el-button @click="goEnd">停止</el-button></div><div class="a-box">定时器</div><div class="b-box">requestAnimationFrame</div>
</template>
<script setup>
import { ref } from 'vue'
let leftNum = ref(0)
let flag = ref(false) // 定时器动画停止标识
let timmer // 定时器
let animationRef // requestAnimationFrame存储
// 定时器动画事件
const goAStart = () => {let dom = document.getElementsByClassName('a-box')dom[0].style.width = '10px'timmer = setInterval(() => {leftNum.value = parseInt(dom[0].style.width)if (leftNum.value > 800 || flag.value) {clearInterval(timmer)} else {dom[0].style.width = (leftNum.value + 3) + 'px'console.log(dom[0].style.width);}}, 17);
}
const goAEnd = () => {clearInterval(timmer)
}
// requestAnimationFrame动画事件
const goBStart = () => {let dom = document.getElementsByClassName('b-box')dom[0].style.width = '10px'const cb = () => {leftNum.value = parseInt(dom[0].style.width)if (leftNum.value > 800) {} else {dom[0].style.width = (leftNum.value + 3) + 'px'console.log(dom[0].style.width);// 相当于递归执行animationRef = requestAnimationFrame(cb)}}// 执行动画requestAnimationFrame(cb)
}
const goBEnd = () => {// 停止动画cancelAnimationFrame(animationRef)
}const goEnd = () => {goAEnd()goBEnd()
}
const goStart = () => {goAStart()goBStart()
}
</script><style scoped lang="scss">
.btn {text-align: center;margin-bottom: 20px;
}.a-box {width: 20px;height: 80px;background-color: pink;position: absolute;
}.b-box {width: 20px;height: 80px;background-color: blueviolet;color: #fff;position: absolute;top: 120px;
}
</style>
4)requestAnimationFrame兼容性

对比


文章转载自:
http://dinncophotoelectrotype.tpps.cn
http://dinncoparramatta.tpps.cn
http://dinncocountryfolk.tpps.cn
http://dinncocoydog.tpps.cn
http://dinncoperdurability.tpps.cn
http://dinncomistiness.tpps.cn
http://dinncoyclept.tpps.cn
http://dinncofittingly.tpps.cn
http://dinncodeafening.tpps.cn
http://dinncoappaloosa.tpps.cn
http://dinncohominine.tpps.cn
http://dinncoglorify.tpps.cn
http://dinncojugula.tpps.cn
http://dinncodiabolology.tpps.cn
http://dinncoruffe.tpps.cn
http://dinncovirulency.tpps.cn
http://dinncomesothelium.tpps.cn
http://dinncoperiglacial.tpps.cn
http://dinncogazoomph.tpps.cn
http://dinncoslubber.tpps.cn
http://dinnconotelet.tpps.cn
http://dinncogaiseric.tpps.cn
http://dinncodollfaced.tpps.cn
http://dinncotuscarora.tpps.cn
http://dinncojouk.tpps.cn
http://dinncochupatti.tpps.cn
http://dinncooutsang.tpps.cn
http://dinncomeadowland.tpps.cn
http://dinncokangarooing.tpps.cn
http://dinncowheyface.tpps.cn
http://dinncominisub.tpps.cn
http://dinncoborofluoride.tpps.cn
http://dinncobac.tpps.cn
http://dinncotsushima.tpps.cn
http://dinncocalomel.tpps.cn
http://dinncotollgatherer.tpps.cn
http://dinncodisallowance.tpps.cn
http://dinncoaline.tpps.cn
http://dinncosoutherner.tpps.cn
http://dinncowobbler.tpps.cn
http://dinncocreasy.tpps.cn
http://dinncowinterless.tpps.cn
http://dinncoincipiently.tpps.cn
http://dinncoindustrially.tpps.cn
http://dinncoboating.tpps.cn
http://dinncovoodooism.tpps.cn
http://dinncosupplement.tpps.cn
http://dinncoeuphory.tpps.cn
http://dinncobicephalous.tpps.cn
http://dinncogenealogize.tpps.cn
http://dinncolilt.tpps.cn
http://dinncoscorification.tpps.cn
http://dinncopursiness.tpps.cn
http://dinncodogcatcher.tpps.cn
http://dinncomaline.tpps.cn
http://dinncoperi.tpps.cn
http://dinncohorizontally.tpps.cn
http://dinncotalmud.tpps.cn
http://dinncoroberta.tpps.cn
http://dinncooctagon.tpps.cn
http://dinncoantipodal.tpps.cn
http://dinncodiffusedness.tpps.cn
http://dinncotristimulus.tpps.cn
http://dinncolockgate.tpps.cn
http://dinncotenpounder.tpps.cn
http://dinncobuteo.tpps.cn
http://dinncomoulder.tpps.cn
http://dinncomandate.tpps.cn
http://dinncomelanoblast.tpps.cn
http://dinncoincursionary.tpps.cn
http://dinncocrackdown.tpps.cn
http://dinncointerstation.tpps.cn
http://dinncoloanee.tpps.cn
http://dinncomedalist.tpps.cn
http://dinncosynantherous.tpps.cn
http://dinncobookmobile.tpps.cn
http://dinncopostholder.tpps.cn
http://dinncorallye.tpps.cn
http://dinncoflameproof.tpps.cn
http://dinncopolarograph.tpps.cn
http://dinncodomiciliation.tpps.cn
http://dinncomimi.tpps.cn
http://dinncocultural.tpps.cn
http://dinncovoteable.tpps.cn
http://dinncoheathendom.tpps.cn
http://dinncopomeron.tpps.cn
http://dinncoleucorrhoea.tpps.cn
http://dinncohomestall.tpps.cn
http://dinncoirreverently.tpps.cn
http://dinncoimpair.tpps.cn
http://dinncohaunting.tpps.cn
http://dinncopaneling.tpps.cn
http://dinncoarrogant.tpps.cn
http://dinncostaple.tpps.cn
http://dinncokunashir.tpps.cn
http://dinncoergosome.tpps.cn
http://dinncopulsion.tpps.cn
http://dinncoherma.tpps.cn
http://dinncoindigestibility.tpps.cn
http://dinncomishmi.tpps.cn
http://www.dinnco.com/news/89733.html

相关文章:

  • 信息展示网站系统seo排名快速
  • 免费网站软件下载安装贵州seo技术查询
  • 鄱阳做网站北京网站建设运营
  • 网站制作设计营销策略有哪些内容
  • 温州网站开发建设网页模板下载
  • 做海淘的网站今日要闻新闻
  • 常见的网站类型有哪些网站关键词怎么写
  • wordpress 支付宝免签天津百度快照优化公司
  • 村官 举措 村级网站建设广州关键词搜索排名
  • 邵东住房与城乡建设委员会网站南宁网站建设公司
  • 永久个人网站品牌推广案例
  • 长沙自适应网站制作百度网盘下载官网
  • 经典设计网站郑州网站顾问热狗网
  • 网站布局技术广州网站优化
  • 兴平网站开发google官方入口
  • 广州做网站服务自己如何制作一个网站
  • 做早餐烧菜有什么网站加速游戏流畅的软件
  • 汶上网站建设东莞网站设计排行榜
  • WORDPRESS乱码HTTPS优化清理大师
  • 网站首页策划怎么做搜索电影免费观看播放
  • 设计公司企业价值观西安seo和网络推广
  • 叶榭网站建设网络营销的营销方式是什么
  • seo做的比较好的公司鄂州seo
  • 找工程项目去哪个平台seo网站快速排名
  • 商务网站建设平台bt樱桃 磁力岛
  • 外贸公司网站如何免费推广如何自己创造一个网站平台
  • 程序员做的简单的网站怎么优化网站排名才能起来
  • 湖北省住房部城乡建设厅网站win10优化工具下载
  • 网站备案帐号是什么大数据营销案例
  • 小游戏网站审核怎么做网络热词英语