Help me move Burt Reynolds Face - jQuery

前端 未结 1 1185
逝去的感伤
逝去的感伤 2021-02-14 23:30

I have a problem with jQuery moving Burt Reynolds face around on the page.

My code thus far is:

        function moveBurt() {
          $(\'.burt\').ani         


        
1条回答
  •  盖世英雄少女心
    2021-02-14 23:43

    how about -

    function moveBurt() {
                  $('.burt').animate({'left' : "-=100px"}, 3000, 'linear');
                }
    

    0 讨论(0)
提交回复
热议问题