I have this jQuery slide show from JQuery Cycle plugin....
<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>
Its been adjusted a bit, but I was wondering if anyone knew how to make it go fast or slower? adjust the speed, I looked at a tutorial of it on the website of the plug, but it didnt work.