Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Plugin for converting jQuery animations to CSS3? Reply To: Plugin for converting jQuery animations to CSS3?

#158186
Rugg
Participant

@thedoc

I think I know what you’re looking for, though, being able to add the script to older projects and just have it work?

You got it!

In that case it’s as simple as adding the script and doing a find and replace on animate()

Ideally this would work, unfortunately I have several animations that depend on the :animated pseudo selector.

For Example:

if ($(':animated').length) {

    return false;

} else {

    // Start Animation

}