jQuery slideDown with easing

后端 未结 5 498
小鲜肉
小鲜肉 2021-02-08 00:18

How can use the slideDown() function with easing?

Maybe extend it somehow?

I\'m looking for something like this:

jQuery.fn.slideDown = function(s         


        
5条回答
  •  你的背包
    2021-02-08 00:56

    Take a look at this page, which contains many easing functions: http://gsgd.co.uk/sandbox/jquery/easing/

    Using that plugin you can do things like:

    $(element).slideUp({
        duration: 1000, 
        easing: method, 
        complete: callback});
    

提交回复
热议问题