jquery if statement animate back
- by user295292
how do i add a if statement when the right image is at +400px then animate back to -400px... when hovering the right image?
$('#left img').mouseenter(function() {
$('#right img').animate({
left: '+=400px'
}, 700);
});
$('#right img').mouseenter(function() {
$('#left img').animate({
left: '-=400px'
}, 700);
});
something similar to this - http://www.hyundaiusa.com/
(the two main images on the site)