7

jsFiddleのように内部が設定されたコンテナdivがあります:http: //jsfiddle.net/BQPVL/1/ul

スクロールが機能しないのはなぜですか?

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);
  });

});

as you can see you can attach both your buttons to the click handler, and inside it retrieve the clicked button id.
If this.id returns "right" var dir wil become "+=", otherwise logically you clicked the #left one and dir will hold "-="

于 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 に答える