How do I create a non-stop fade cycle?
Hi Folks,
I have this little problem that I seem to not be able to figure out... I'm using jquery to fade images. My customer whishes that these fades happen without any breaks in between. (meaning that they'll continuously keep fading into each other)
Currently my code look like this:
- <script type="text/javascript">
- $(document).ready(function() {
- $('.slideshow').cycle({
- fx: 'fade', speed: 3000, timeout: 1
- });
- });
- </script>
If I undestood this correctly (reading the wikis) speed equals the fade, and the timeout equals the time passing until the next action happens (in this case the next fade). I'd like to be able to set this to 0, but apparently this doesn't work... I can easily set it to something like 5000 and the time it stays will be 5 seconds, but I'd like it to be 0 seconds...
Anybody got an idea how I could accomplish this?
I'd be really glad to find some help on this.
Regards,
Philippe