jquery 闪烁效果

<span class=""><a id="new-data-count" href="#">我会闪的哦!</a></span> 

//闪烁

  function flicker(){
    $('#new-data-count').fadeOut(500).fadeIn(500);
  }


  $(function(){
    setInterval(flicker,1000);
  });

你可能感兴趣的:(jquery,文字闪烁)