This will work.
$(document).ready(function() {
$('ul.anim_queue_example1 a')
.hover(function() {
$(this).animate({
opacity: 0.25,
left: '+=20',
height: 'toggle'
}, 5000, function() {
});
}, function() {
$(this).animate({
opacity: 0.25,
left: '+=0',
height: 'toggle'
}, 5000, function() {
});
});
});
Check out the working example here http://jsfiddle.net/pJMva/23/
Sahal source
share