Text blinking jQuery

后端 未结 30 1897
我寻月下人不归
我寻月下人不归 2020-11-27 03:23

What is an easy way to make text blinking in jQuery and a way to stop it? Must work for IE, FF and Chrome. Thanks

30条回答
  •  借酒劲吻你
    2020-11-27 03:42

    Here's mine ; it gives you control over the 3 parameters that matter:

    • the fade in speed
    • the fade out speed
    • the repeat speed

    .

    setInterval(function() {
        $('.blink').fadeIn(300).fadeOut(500);
    }, 1000);
    

提交回复
热议问题