I'm trying to get the background of a menu to animate depending on the menu LI
The script I have so far is http://jsfiddle.net/d9LHV/70/
$(function() {
$('.top-nav ul li').mouseenter(function() {
var position = $(this).position()
$(this).parent().animate({
'backgroundPosition': position.left}, {duration: 150})
})
.mouseout(function() {
$(this).parent().animate({})
})
});
Seems to work but something feels off about the jQuery but I don't have any jQuery experience and would like some input.
If I use a .hover or take out the .mouseout part the animation becomes jumpy and choppy.
Is there a better way to get the result? Or is something off with my logic, because i don't understand why I need the empty mouseout to make it work smoothly.
{duration: 150}, just150will do on it's own without the curly brackets. Also the empty{}isn't needed in the secondanimate()function. – diggersworld Nov 21 '12 at 20:43