- <!DOCTYPE html>
- <html>
- <head>
- <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.js"></script>
- <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.lite.1.0.js"></script>
- <script type="text/javascript">
- $(document).ready(function() {
- $('.slideshow1').cycle({
- fx: 'fade'
- });
- });
- </script>
- </head>
- <body>
- <div class="slideshow1" align="center">
- <img src="http://eclipse-chaser.com/06totality.jpg" />
- <img src="http://eclipse-chaser.com/08posttotality.jpg" />
- <img src="http://eclipse-chaser.com/09totality.jpg" />
-
- </div><br /><br /><br /><br />
- <center><div class="slideshow1">
- <img src="http://eclipse-chaser.com/06totality.jpg" />
- <img src="http://eclipse-chaser.com/08posttotality.jpg" />
- <img src="http://eclipse-chaser.com/09totality.jpg" />
-
- </div></center><br /><br /><br />
-
- <table><tr> <div class="slideshow1" align="center">
- <img src="http://eclipse-chaser.com/06totality.jpg" />
- <img src="http://eclipse-chaser.com/08posttotality.jpg" />
- <img src="http://eclipse-chaser.com/09totality.jpg" />
- </div>
- </tr>
- </table>
-
- </body>
- </html>
I am playing with cycle.lite.js, & I can get a single instance of a 3 image fade to work. But, if I put 2 or 3 instances of the fade, they end up overlapping. Also, I can't get the fade to "center". Plus, if I put the fade into a table, it doesn't get placed correctly.
??
I have no problem using "cycle.latest.all.js", everything seems to work.