I am having trouble getting a CSS transition (to scale a div to 1.05 it's original size) to play nicely alongside a jQuery animation on the page below:
http://www.griffinlive.com/video-packages
You can see the CSS transition in action when you hover over one of the colored divs, and clicking on the Email Us button triggers an animation but the animation is cut short.
I've confirmed that removing the CSS animation allows the jQuery animation to display correctly.
I've identified two courses of action:
- Remove the CSS transform from my style sheet and recreate the effect using jQuery.
- Remove the CSS transform when the use clicks on a link that is going to trigger an animation.
I think the first option is the better of the two as it allows the animation to reset itself to zero before being taken away. But I'm open to better ideas and thus posting this little problem here.
Thank you in advance for any assistance you can provide.