Anythingslider ala jcarousel ( mutliple image display )
I am using Anythingslider in one of my projects, and I want to display more than one image开发者_Go百科 in the panel, the same way jCarousel does. I googled around and found nothing that can help. I appreciate any help ( code snippet or idea ). thanks
http://css-tricks.com/anythingslider-jquery-plugin/ AnythingSlider
All you need to do is add the images inside the list (demo):
<ul id="slider1">
<li>
<div class="images">
<img src="image1.jpg" />
<img src="image2.jpg" />
</div>
</li>
<li>
<div class="images">
<img src="image3.jpg" />
<img src="image4.jpg" />
</div>
</li>
</ul>
Also make sure you have the latest version.
精彩评论