jquery slideUp/slideDown functions not animating

后端 未结 5 669
庸人自扰
庸人自扰 2020-12-17 17:05

I\'m having trouble with .slideup() and .slideDown()

have a look at the following JSFiddle: http://jsfiddle.net/7se2r/4/

Although t

5条回答
  •  北海茫月
    2020-12-17 17:48

    Also, check you don't have CSS transitions set on your element, or globally to all elements. This will screw with your animations:

    * {transition: all 0.1s ease;}
    

提交回复
热议问题