我有这个来自 JQuery Cycle 插件的 jQuery 幻灯片放映......
<script type="text/javascript">
$(window).on('load', function() {
var img_widths = [];
var imgs = $(".pics").find("img");
imgs.each(function() {
img_widths.push($(this).width());
$(this).attr("width", $(this).width());
});
});
$('.pics').cycle('fade');
</script>
它进行了一些调整,但我想知道是否有人知道如何让它更快或更慢?调整速度,我在插件的网站上看了它的教程,但它不起作用。