jQuery轮播整个幻灯片随图像/文本等变化

时间:2010-07-06 18:00:03

标签: jquery html css tabs carousel

我对jQuery很新,但基本上我正在寻找的是一个可以执行以下操作的脚本:

imgur.com/PYSAL.jpg

数字会改变整张幻灯片(图片和文字)。

有人能指出我可以做到这一点的脚本吗?或者非常相似的东西,我只是在学习JS。谢谢!

1 个答案:

答案 0 :(得分:2)

这是一个类似的jQuery插件。 http://sorgalla.com/jcarousel/

它可以自定义..甚至可以选择屏幕截图中的外部控件。

您将图片/文字放在ListItem标记<li>中:

    <ul> 
      <li><img width="75" height="75" src="http://static.flickr.com/66/199481236_dc98b5abb3_s.jpg" alt="" />Birds</li> 
      <li><img width="75" height="75" src="http://static.flickr.com/75/199481072_b4a0d09597_s.jpg" alt="" />Frogs</li> 
      <li><img width="75" height="75" src="http://static.flickr.com/57/199481087_33ae73a8de_s.jpg" alt="" />Dogs</li> 
      <li><img width="75" height="75" src="http://static.flickr.com/77/199481108_4359e6b971_s.jpg" alt="" />Cats</li> 
      <li><img width="75" height="75" src="http://static.flickr.com/58/199481143_3c148d9dd3_s.jpg" alt="" />Insects</li> 
    </ul>