setTimeout speeds up with multiple tabs

后端 未结 7 1605
慢半拍i
慢半拍i 2020-12-10 07:47

I’m having a setTimeout problem similar to this one. But that solution doesn\'t help me since I can’t use php in my file.

My site has a slider with a list of images

7条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-10 08:13

    There is an easier way using the jquery animate queue property:

    $(this).animate({
        left: '+=100'
    }, {duration:500, queue:false});
    

提交回复
热议问题