编辑:解决了!
有没有办法将 jquery 插件'roundabout' ( http://fredhq.com/projects/roundabout ) 与更新版本的 jquery 一起使用,最好是 v1.8.3。
我已经设置了一个小提琴,您可以在其中看到它在 1.6.3 中工作,但它被编写为在 1.7.1 中实现最佳性能。我需要它来使用 1.8.3 http://jsfiddle.net/David_Knowles/vw9nt/
我在网上环顾四周,向插件开发人员发布了一个问题,但还没有成功。任何指针将不胜感激。
<ul class="roundabout-holder">
<li id="w-header-image-1"><img src="img/award.png" alt="Award"></li>
<li id="w-header-image-2"><img src="img/backpack.png" alt="Backpack"></li>
<li id="w-header-image-3"><img src="img/bear.png" alt="Bear"></li>
<li id="w-header-image-4"><img src="img/gun.png" alt="Gun"></li>
</ul>
$(document).ready(function() {
$('ul').roundabout({
tilt:-4,
minOpacity: 1,
minScale: 0.1,
autoplay: true,
autoplayDuration: 1000,
autoplayPauseOnHover: true,
btnStartAutoplay: ".start",
btnStopAutoplay: ".stop",
btnToggleAutoplay: ".toggle",
btnNext: ".next",
btnPrev: ".previous"
});
});
编辑:最新版本(2.4.2)适用于 Jquery 1.8.3 及更高版本 https://github.com/fredhq/roundabout/archive/master.zip