开发者

Anythingslider ala jcarousel ( mutliple image display )

开发者 https://www.devze.com 2023-01-22 15:07 出处:网络
I am usingAnythingslider 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 ap

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.

0

精彩评论

暂无评论...
验证码 换一张
取 消