悬停时连续/无限水平滚动

时间:2013-10-31 16:15:47

标签: javascript jquery html css math

我有一个架子,当你悬停左或右按钮左右滚动时。但是,目前这只会滚动一个定义的数量..而且这个架子将通过延迟加载来填充,因此没有真正的方法可以知道架子有多宽。

当然,我可以将数字设置为99999999并将动画速度设置为类似的高数字,但肯定有更聪明的方法吗?没有插件!

感谢您的帮助..

Fiddle

$('.scroll-arrow').each(function(){
    var modifier = ($(this).hasClass('right')) ? 1 : -1;
    var sib = ('.shelf-slide');
    var sl = 0;

    $(this).hover(function() {
        sl = $(this).siblings(sib).scrollLeft();
        $(this).siblings(sib).stop();
        $(this).siblings(sib).animate({scrollLeft: sl + (modifier * 1000)}, 5000, 'linear');
    }, function() {
        $(this).siblings(sib).stop();
    });
});

1 个答案:

答案 0 :(得分:1)

你可以创建一个函数来保持动画效果,同时你可以像这样悬停箭头

function animatecontent(ele,modifier){//function to scroll
  var sl = ele.scrollLeft();
  //120 should be the width of the ".content" and 500 the time to scroll 1 ".content"
  ele.animate({scrollLeft: sl + (modifier * 120)}, 500, 'linear',function(){
        if(hover){//on callback if it is still hover call the same function
            animatecontent(ele,modifier);
        }
    });
};
var hover=false;
$('.scroll-arrow').each(function(){
    var modifier = ($(this).hasClass('right')) ? 1 : -1;
    var sib = ('.shelf-slide');
    $(this).hover(function() {
        hover=true;
    $(this).siblings(sib).stop();
      animatecontent($(this).siblings(sib),modifier);//pass the element to animate and the modifier     
    }, function() {
        hover=false;
        $(this).siblings(sib).stop();
    });
});    

http://jsfiddle.net/A3mPw/7/