I have created a #logo
DIV that consists of a smaller #circle
DIV & h1
. The #circle
acts as the DIV/canvas that my Raphael.js object, a circle, is rendered in. My goal was to make it so when a user hovers over the #logo
DIV the Raphael.js circle and h1
will get animated but I ran into some problems.
For some reason my Raphael.js circle object is not getting it's
.attr()
method animated during a jQuery.hover()
handlerIn
mouse event. The change just happens immediately.Additionally, during the
handlerOut
event, the Raphael.js circle does not get its.attr()
method applied to it at all. It just keeps the.attr()
attributes that were applied to it during thehanderIn
event
The code to my example of this issue is located here. You can click preview (top right) at that page to see the code in action.