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>
少し調整しましたが、速くしたり遅くしたりする方法を知っている人はいますか?速度を調整して、プラグのウェブサイトでチュートリアルを見ましたが、うまくいきませんでした。