Jump to content
  • 0

помогите с "остановкой" jquery


T@NKIST
 Share

Question

Использую код (сделал выпадающее меню)

$('.logo').hover(
function(){
$('.qwa').show(150).animate({opacity:'1'}, {
duration: 150,
specialEasing: {
opacity: 'linear',
height: 'swing'
}
});
},
function(){
$('.qwa').animate({opacity:'0'}, {
duration: 150,
specialEasing: {
opacity: 'linear',
height: 'swing'
}
}).hide(150);
}
);

И все ок, но когда много и быстро наводишь и забираешь мышь от элемента то анимация повторяется много раз

Как сделать чтоб анимация не повторялась много раз?

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Перед началом анимации же

Также не совсем понятно, зачем вы используете show&animate вместо одного animate, ведь show по сути и есть анимация

так ставить?

$('.logo').hover(
function(){
$('.qwa').stop().show(150).animate({opacity:'1'}, {
duration: 150,
specialEasing: {
opacity: 'linear',
height: 'swing'
}
});
},
function(){
$('.qwa').stop().animate({opacity:'0'}, {
duration: 150,
specialEasing: {
opacity: 'linear',
height: 'swing'
}
}).hide(150);
}
);

Если так то он только портит поведение кода, а повторение осталось

Edited by T@NKIST
Link to comment
Share on other sites

  • 0

Попробуйте .stop(true)

Правда есть проблема со временем анимации. Т.е. элемент вылезает 150мс, если мышь ушла через 30мс после начала, вылезание остановится и начнется обратное движение, но будет оно не 30мс, а столько сколько указано, т.е. 150мс, т.е. обратно двигаться будет медленее.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy