再会,
第一:我英语说得不太好
我想创建一个从右向左滑动 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 开始!
你知道我的意思
感谢帮助!