Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I make hover() run continuously? I'd like that when I mouse over #up_btn, the top property keeps animating. Right now, it only runs once.

$(document).ready(function(){
    $("#up_btn").hover(function(){
        var new_num = parseInt($("#move_box").css("top"));
        $("#move_box").css("top", new_num + 1);
    })
})
share|improve this question
please add in the HTML of your page. – jinyuan Jun 7 '12 at 2:35
2  
ProTip™: You don't have to use parseInt on top with jQuery. Just do .css('top', '+= 1')! – rynah Jun 7 '12 at 2:35
@minitech Did not know that, very useful. – Waleed Khan Jun 7 '12 at 2:35
So what is the speed? – xdazz Jun 7 '12 at 2:36
@minitech thank you for the suggestion,i remove the parseInt yet,and it's work,thank you. – RogerWu Jun 7 '12 at 2:40
show 2 more comments

3 Answers

You can use setInterval to make your code run repeatedly, then use clearInterval to stop the animation:

$(document).ready(function() {
    var timer;

    $("#up_btn").hover(function() {
        timer = setInterval(function() {
            $("#move_box").css('top', '+= 1');
        }, 100); // Change the interval as you see fit.
    }, function() {
        clearInterval(timer);
    });
});
share|improve this answer
thank you,it's work now. – RogerWu Jun 7 '12 at 2:43
one more question,is that no idea to use a event to listen the hover and let it always work? – RogerWu Jun 7 '12 at 2:47
@RogerWu: I'm sorry, I don't quite understand what you mean by "always work". Could you please rephrase? – rynah Jun 7 '12 at 2:51
sorry...i want to use a mouse event like "hover" or "mouseover" to judge whether to run the function or not,it will judge all the time,not once time...can you understand what i did say... – RogerWu Jun 7 '12 at 2:57
@RogerWu: It should do that already... – rynah Jun 7 '12 at 2:57
show 1 more comment

Use setInterval or setTimeout. For example:

var move_box_interval;
$(document).ready(function() {
    $("#up_btn").hover(function() {
        // Change the interval to be appropriate. It's in milliseconds.
        move_box_interval = setInterval(move_box, 100);
    });

    // Change this to the appropriate trigger.
    $("#up_btn").mouseout(function() {
        clearInterval(move_box_interval);
    });
});

function move_box() {
    $("#move_box").css("top", "+= 1");
}
share|improve this answer
thank you~it's work too~ – RogerWu Jun 7 '12 at 2:49
$(document).ready(function() {
    $("#up_btn").mouseenter(function() {
        var new_num = parseInt($("#move_box").css("top"));
        $("#move_box").css("top", new_num + 1);
    })
})
share|improve this answer
thank you,but this only run once time...maybe it's not work...but thank you all the same – RogerWu Jun 7 '12 at 2:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.