$(function () {
    function left_right() {
        $("#sc1452").animate({'left':'-=100'},5000).delay(1000)
            .animate({'left':'+=100'},5000,function(){
                setTimeout(left_right,1000);
            });
    }
    left_right();
});

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-13
  • 2022-02-18
  • 2022-12-23
  • 2022-12-23
  • 2021-10-31
猜你喜欢
  • 2021-12-29
  • 2022-02-09
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案