jQuery scrollRight?

前端 未结 4 1789
陌清茗
陌清茗 2020-11-30 00:41

I have the following code that seems to scroll a div on click all the way to the left. I am wondering if:

  1. there is a way to get it to get it to scroll only 200
4条回答
  •  眼角桃花
    2020-11-30 01:12

    $('.leftArrow').click(function(event){
        event.preventDefault();
        $('.innerWrapper').animate({scrollLeft:'+=1500'},500);
    });
    

    Simple as that.

提交回复
热议问题