Thanks for the help.  I do have a Flash version but I wanted to use
Javascript.  I didn't think of making the .css call instead of
reversing the animation.  Outstanding!

On Oct 6, 4:55 pm, ricardobeat <[EMAIL PROTECTED]> wrote:
> Honestly, you should be using flash for this stuff. You'll only get
> headaches trying to do fancy animations like these in Javascript, your
> code has way too much calls.
>
> If you really really want to do this in JS you should give
> your .blowUp divs a position:relative in CSS and use something like
> this, there is no need for all that code:
>
> $('.blowUp').animate({left:'-25%',top:'-50%',padding:'1em',opacity:
> 0}).css({left:0,top:0,padding:'0.75em 0',opacity:1});
>
> On Oct 6, 3:12 pm, Greg G <[EMAIL PROTECTED]> wrote:
>
> > I have some animation I'm working on that works fine in Firefox but
> > not in IE.  I have two issues:
>
> > Part of the animation is fading out an element.  I want to integrate
> > this with the animate function and not use the fade out option.  I've
> > tried using filter : "alpha(opacity..." but that didn't help.
>
> > The callback function, which essentialy resets the animation behind
> > the scene, doesn't work.
>
> > I figure a URL would be better than me putting in code.  Plus, I can't
> > remember if I need to wrap my code in order to post it.
>
> >http://www.silverchild.com/menuwidget/blowup.html
>
> > Thank you in advance for everyones help.

Reply via email to