Jquery's fadein 'slow' is too fast

后端 未结 4 770
旧时难觅i
旧时难觅i 2020-12-29 04:29

i\'m using the jquery fadein fadeout with the slow option, but it\'s still a little too fast for me. now i\'ve read that you can only choose between fast and slow, but is th

4条回答
  •  萌比男神i
    2020-12-29 05:04

    Use a number of milliseconds rather than 'fast' or 'slow'

    e.g.

    $('#myID').fadeIn(100, function() {
      // complete
    });
    

    See http://api.jquery.com/fadeIn/

提交回复
热议问题