【发布时间】:2011-03-03 00:24:42
【问题描述】:
是否有一个 jQuery 滑块,我可以设置下一张幻灯片(图像)的编号? 我可以在 AnySlider 中执行此操作,但不能使用淡入淡出效果滑动?
所以:我需要一个使用淡入淡出效果的滑块,我可以告诉它下一张图片是什么...
【问题讨论】:
是否有一个 jQuery 滑块,我可以设置下一张幻灯片(图像)的编号? 我可以在 AnySlider 中执行此操作,但不能使用淡入淡出效果滑动?
所以:我需要一个使用淡入淡出效果的滑块,我可以告诉它下一张图片是什么...
【问题讨论】:
我找到了 jQuery plugins 的集合,这将对您有所帮助!链接在这里: 如果你想要一个带有淡入淡出效果的滑块,下面的代码会有所帮助(detailed here):
$(".slidetabs").tabs(".images > div", {
// enable "cross-fading" effect
effect: 'fade',
fadeOutSpeed: "slow",
// start from the beginning after the last tab
rotate: true
// use the slideshow plugin. It accepts its own configuration
}).slideshow();
【讨论】: