Flash message fade effect

前端 未结 2 1545
一生所求
一生所求 2020-12-30 02:07

I\'m trying to use a flash message with a fade in and out effect using jQuery. can someone please suggest the best way of doing this?

2条回答
  •  忘掉有多难
    2020-12-30 02:50

    Sure:

    $(function() {
       $('#flash').delay(500).fadeIn('normal', function() {
          $(this).delay(2500).fadeOut();
       });
    });
    

    jsFiddle example

提交回复
热议问题