cycle.lite.js, problems

cycle.lite.js, problems

  1. <!DOCTYPE html>
  2. <html>
  3. <head>

  4. <script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.js"></script>

  5. <script type="text/javascript" src="http://cloud.github.com/downloads/malsup/cycle/jquery.cycle.lite.1.0.js"></script>

  6. <script type="text/javascript">

  7. $(document).ready(function() {
  8. $('.slideshow1').cycle({
  9. fx: 'fade'
  10. });

  11. });
  12. </script>
  13. </head>

  14. <body>

  15. <div class="slideshow1" align="center">
  16. <img src="http://eclipse-chaser.com/06totality.jpg" />
  17. <img src="http://eclipse-chaser.com/08posttotality.jpg" />
  18. <img src="http://eclipse-chaser.com/09totality.jpg" />
  19. </div><br /><br /><br /><br />

  20. <center><div class="slideshow1">
  21. <img src="http://eclipse-chaser.com/06totality.jpg" />
  22. <img src="http://eclipse-chaser.com/08posttotality.jpg" />
  23. <img src="http://eclipse-chaser.com/09totality.jpg" />
  24. </div></center><br /><br /><br />
  25. <table><tr> <div class="slideshow1" align="center">
  26. <img src="http://eclipse-chaser.com/06totality.jpg" />
  27. <img src="http://eclipse-chaser.com/08posttotality.jpg" />
  28. <img src="http://eclipse-chaser.com/09totality.jpg" />
  29. </div>
  30. </tr>
  31. </table>
  32. </body>
  33. </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.