7

I have a container div with a ul inside of it setup like this jsFiddle: http://jsfiddle.net/BQPVL/1/

Why isn't the scroll working?

HTML:

<div id="outside">
  <ul id="inside">
    <li>hi</li>
    <li>how are you?</li>
    <li>i am good.</li>
  </ul>
</div>
<button id="left">&larr;</button>
<button id="right">&rarr;</button>

CSS:

#outside {
  width: 200px;
  height: 50px;
  overflow: scroll;
}
#inside {
  width: 1000px;
}
#inside li {
  background: red;
  width: 99px;
  height: 40px;
  border-right: 1px solid black;
  float: left;
  padding: 5px;
}

jQuery:

var position = $("#inside").scrollLeft();
$(document).ready(function() {
  $("#right").bind("click", function() {
    $("#inside").animate({
      scrollLeft: position + 100
    }, 1000);
  });
});
4

3 回答 3

11

您需要scrollLeft具有该overflow属性的元素,这就是您的#outside

jsBin 演示

$(function() {  // DOM READY shorthand

  $("#right, #left").click(function() {
    var dir = this.id=="right" ? '+=' : '-=' ;
    $("#outside").stop().animate({scrollLeft: dir+'100'}, 1000);
  });

});

如您所见,您可以将两个按钮都附加到单击处理程序,并在其中检索单击的按钮id
如果this.id返回"right"var dirwil become "+=",否则从逻辑上讲,您单击该变量#left并将dir保持"-="

于 2013-01-12T06:15:18.717 回答
1

完美运行

你需要给offset()position()。并对属性进行动画处理left

$(document).ready(function() {
  $("#right").bind("click", function() {
    var position = $("#inside").position();
    $("#inside").animate({
      left: position.left - 100
    }, 1000);
  });
});
$("#left").bind("click", function() {
  var position = $("#inside").position();
  $("#inside").animate({
    left: position.left + 100
  }, 1000);
});

更正

  1. 当你给出一个时,float: left;你需要清除你的浮动。请等到小提琴准备好...
  2. 您还没有在小提琴中加载 jQuery。
  3. position: relative;需要给UL

小提琴:http: //jsfiddle.net/BQPVL/9/

于 2013-01-12T03:20:47.687 回答
0

尝试使用这个:http: //jsfiddle.net/BQPVL/10/

$("#right").on("click", function () {
  $("#inside").stop(true, true).animate({
    left: '-=100'
  }, 1000);
});
$("#left").on("click", function () {
  $("#inside").stop(true, true).animate({
    left:'+=100'
  }, 1000);
});
于 2013-01-12T03:27:22.287 回答