scroll DemoにjQuery Horizontal scroll plugi n を使用しています。
li に余分な画像を追加すると、追加された画像が表示されません。誰かアイデアがありますか?
<ul id="horiz_container_outer">
<li id="horiz_container_inner">
<ul id="horiz_container">
<li><img src="images/toystory.png" width="500px" height="300px" alt="Toy Story" /></li>
<li><img src="images/up.png" width="500px" height="300px" alt="UP" /></li>
<li><img src="images/ratatouille.png" width="500px" height="300px" alt="Ratatouille" /></li>
<li><img src="images/findingnemo.png" width="500px" height="300px" alt="Finding Nemo" /></li>
<li><img src="images/cars.png" width="500px" height="300px" alt="Cars" /></li>
<li><img src="images/monstersinc.png" width="500px" height="300px" alt="Monsters Inc" /></li>
<li><img src="images/bugslife.png" width="500px" height="300px" alt="A Bugs Life" /></li>
<li><img src="images/incredibles.png" width="500px" height="300px" alt="The Incredibles" /></li>
<li><img src="images/bugslife.png" width="500px" height="300px" alt="A Bugs Life" /></li>
<li><img src="images/incredibles.png" width="500px" height="300px" alt="The Incredibles" /></li>
<li><img src="images/bugslife.png" width="500px" height="300px" alt="A Bugs Life" /></li>
<li><img src="images/toystory.png" width="500px" height="300px" alt="The Incredibles" /></li>
<li><img src="images/bugslife.png" width="500px" height="300px" alt="A Bugs Life" /></li>
<li><img src="images/toystory.png" width="500px" height="300px" alt="The Incredibles" /></li>
</ul>
</li>
</ul>
jQuery
$(document).ready(function(){
$('#horiz_container_outer').horizontalScroll();
});