I am trying to create a jQuery plugin that will allow us to add entrance and exit animations in the mark up.
I have the entrance animations working in Chrome and Firefox, but they are having no effect in IE7 or IE8
The animation is performed by
animate({'top':posData.top+'px',
'left': posData.left+'px',
'opacity': 1},
speed)
or a varient of it (dependant on the required direction). posData is being logged to console so you can see the possible values. speed
is set at the start of the plugin.