Hello

I have the following code on my site, using the jQuery Cycle plugin.
Everything works fine, until you see the effect Shuffle, then the
animation stops.

[code]
    <script type="text/javascript" src="js/jquery.js"></script>
    <script type="text/javascript" src="js/jquery.cycle.js"></script>
    <script type="text/javascript" src="js/jquery.cycle.trans.js"></
script>
    <script type="text/javascript">
      $(function() {
        $('#animation').cycle({
          fx: 'all',
          shuffle: {
            top: 0,
            left:  760
          },
          speed:  2500,
          delay: -4000,
          random:  1
        });
      });
    </script>

....

<div id="animation">
    <img src="img/img_1.jpg" alt="img_1" title="img_1" width="760"
height="459">
    <img src="img/img_2.jpg" alt="img_2" title="img_2" width="760"
height="459">
    <img src="img/img_3.jpg" alt="img_3" title="img_3" width="760"
height="459">
    <img src="img/img_4.jpg" alt="img_4" title="img_4" width="760"
height="459">
</div>
[/code]

Reply via email to