javascript – jQuery动画延迟

前端之家收集整理的这篇文章主要介绍了javascript – jQuery动画延迟前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

如何使用jQuery延迟动画?

我需要导航来扩展宽度,然后扩展高度,然后反转为反向动画.

码:

$(function() {
    $("#nav li").not("#logo,#nav li ul li").hover(function(){
        $(this).animate({width:"200px"},{queue:false,duration:1000});
    },function(){
        $(this).animate({width:"30px"},duration:1000});
    });


    $("#nav li.parent").hover(function(){
        $(this).children("ul").animate({height:"40px"},duration:500});
    },function(){
        $(this).children("ul").animate({height:"0px"},duration:500});
    });
});
最佳答案
使用jQuery .delay(N)方法,其中N是延迟的毫秒数.

jsFiddle example

原文链接:https://www.f2er.com/jquery/427872.html

猜你在找的jQuery相关文章