gpt4 book ai didi

jquery动画优化

转载 作者:行者123 更新时间:2023-11-28 13:04:26 26 4
gpt4 key购买 nike

我将此脚本用于论坛上的动画。

我注意到它会产生某种延迟。有没有更好的方法来实现动画?还是改进代码以获得更流畅的体验?

$(function(){
// animation Scroll
var posY1 = 0;
var posY2 = 0;
var posY3 = 0;
var imgH = 500;
setInterval(function(){
if (posY1 <= -900) posY1 = 0;
if (posY2 <= -900) posY2 = 0;
if (posY3 <= -1200) posY3 = 0;
posY1 -= 1;
posY2 -= 2;
posY3 -= 3;
$('#background').css({ backgroundPosition: '0' + posY1 + 'px' });
$('#midground').css({ backgroundPosition: '0' + posY2 + 'px' });
$('#foreground').css({ backgroundPosition: '0' + posY3 + 'px' });
},50);
});

最佳答案

使用 jquery Amimate

$('#background').animate({ backgroundPosition: '0' + posY1 + 'px' },time needed to perform if needed);
$('#midground').animate({ backgroundPosition: '0' + posY2 + 'px' });
$('#foreground').animate({ backgroundPosition: '0' + posY3 + 'px' })

关于jquery动画优化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20613171/

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