1

再会,

第一:我英语说得不太好

我想创建一个从右向左滑动 div 的 schrollbar。

我使用这个滑块:http ://www.switchonthecode.com/tutorials/using-jquery-slider-to-scroll-a-div

我从以下位置设置脚本:

    $(document).ready(function(){
  $("#content-slider").slider({
    animate: true,
    change: handleSliderChange,
    slide: handleSliderSlide
  });
});

至:

    $(document).ready(function(){
  $("#content-slider").slider({
    animate: true,
    change: handleSliderChange,
    slide: handleSliderSlide,
    value: 1000
  });
});

现在 Scrollbar 的 Handler 位于右侧,但 Div 始终位于左侧:

德语 = 英语链接 = 左中指 = 中

http://s1.directupload.net/images/121109/678f8ov8.png

我希望 div 从最后一个 div 开始!

你知道我的意思

感谢帮助!

4

1 回答 1

0

我认为你需要的主要东西在value这里

 $(document).ready(function(){
   $("#content-slider").slider({
     animate: true,
     change: handleSliderChange,
     slide: handleSliderSlide,
     value: $("#content-scroll").width()
   });
 });

并初始化已经向右滚动的容器

$("#content-scroll").animate({scrollLeft: ($("#content-scroll").width()) }, 0);

可以在此处查看完整的工作示例http://jsbin.com/onodij/1/edit

如果这不是您正在寻找的,请在 jsbin 或 jsfiddle 上添加您的代码版本,我会看看它。

于 2012-11-09T15:59:48.187 回答