Сообщение от dimon888951
|
зачем вообще нужен stop
|
сравните, со stop и без (поводите мышкой)
<style>img {position: absolute;} img + img {left: 150px}</style>
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$(document).ready(function () {
$('img:first').hover(function () {
$(this).animate({height:100}, 2000);
}, function () {
$(this).animate({height:50}, 2000);
});
$('img:last').hover(function () {
$(this).stop().animate({height:100}, 2000);
}, function () {
$(this).stop().animate({height:50}, 2000);
});
});
</script>
<img src=http://placehold.it/50> <img src=http://placehold.it/50>