基本上,大约4秒后,我想要一组3个缩略图旋转(作为一组)到另一组3个缩略图。这是一个示例,但想象3个单独的图像而不是1. http://pk3solutions.com/2013_Fall/cas222%20%28Intermediate%20Website%20Creation%29/nifty/Index.html我还希望这些图像具有可点击链接。
到目前为止我所拥有的内容:http://pk3solutions.com/2013_Fall/cas222%20%28Intermediate%20Website%20Creation%29/final_project/portfolio.html
另外,我希望能够在这些缩略图下立即使用这些链接,将设置切换为不同的3.有没有办法在不制作单独的网页的情况下执行此操作?基本上这些链接是"过滤器"可以这么说。
到目前为止,这就是我的全部内容:
$('#s1').cycle({
fx: 'scrollHorz',
prev: '#prev1',
next: '#next1',
timeout: 0,
rev: true
});
答案 0 :(得分:0)
jquery循环
jQuery("#slideshow").cycle({
timeout:0, // no autoplay
fx: 'fade', //
next: '#next',
prev: '#prev'
});
检查demo!