Mike is it possible that there is still a bug or am I just doing
something really dumb here:

http://www.whatbird.com/wwwroot/Components/cycle%20demo2.html

I see the first image but no cycling. Firebug

I would like to point out something that I think would make your cycle
plugin much easier to use which is this.

This page starts out great by showing you the exact code you need to
enter.

But its not complete. You dont show everything that you need. The
container in your excellent examples is #S1. That really confused me.

In other words assuming this is correct code I believe your plugin and
every other one would be so more accessible if you just added this to
the example page

<link href="../css/cycle.css" rel="stylesheet" type="text/css" />

<script src="../js/jquery.js" type="text/javascript"></script>
<script src="../js/jquery.cycle.all.js" type="text/javascript"></
script>

<script type="text/javascript">
$(document).ready(function(){
/* $('#birds').cycle('fade');  */

$('#birds').cycle(
        {
        fx: 'scrolldown', speed: 300, timeout: 2000
        }
);

});
</script>

</head>
<body>
<div id="birds" class="pics">
    <img src="../images/Acadian Flycatcher_X2.jpg"  />
    <img src="../images/Acorn Woodpecker_X2.jpg"  />
    <img src="../images/Alder Flycatcher_X2.jpg"  /></div>
</body>
</html>

Anway thats my nickle.

Mitch

On Aug 21, 7:42 am, "Mike Alsup" <[EMAIL PROTECTED]> wrote:
> Mitch,
>
> I've just fixed a bug in the scroll transitions.  v1.8 is available
> now and should fix the problem.  Give me a shout if you're still
> having troubles.
>
> http://www.malsup.com/jquery/cycle/download.html
>
> Mike
>
>
>
> > I got it to work, thank you guys, as you can see here (wait a few
> > seconds for the fade to occur).
>
> >http://www.whatbird.com/wwwroot/Components/cycle%20demo.html
>
> > However I cant get the special effects to work. For example this link,
> > which uses
>
> >  $('#birds').cycle( {fx: 'scrollDown'} );
>
> > should do a scroll down:
>
> >http://www.whatbird.com/wwwroot/Components/cycle%20demo2.html
>
> > Instead nothing happens.- Hide quoted text -
>
> - Show quoted text -

Reply via email to