gpt4 book ai didi

javascript - Jquery CPU 使用率

转载 作者:数据小太阳 更新时间:2023-10-29 04:24:12 26 4
gpt4 key购买 nike

我正在使用 Jquery 使图像在我的页面上水平滚动。唯一的问题是它占用了大量的 CPU。在 Firefox 中的单核笔记本电脑上高达 100%。什么会导致这个???

查询

<script>
jQuery(document).ready(function() {

$(".speech").animate({backgroundPosition: "-6000px 0px"}, 400000, null);
});

</script>

CSS

.speech {
/*position:fixed;*/
top:0;
left:0px;
height:400px;
width:100%;
z-index:-1;
background:url(/images/speech.png) -300px -500px repeat-x;
margin-right: auto;
margin-left: auto;
position: fixed;
}

HTML

<div class="speech"></div>

最佳答案

它正在耗尽 CPU 资源,因为您要求浏览器在很长一段时间内每秒多次重绘图像。那不是免费的。

关于javascript - Jquery CPU 使用率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2708152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com