-1

是否有更优雅的解决方案可以流畅地连续更改跨度颜色(绿色、黑色、绿色、黑色等)?

setInterval(function() {
   $('#migrate_stamp').animate({ backgroundColor: '#000000' }, 'slow');
   $('#migrate_stamp').animate({ backgroundColor: '#00B312' }, 'slow');
}, 1000);

谢谢

4

2 回答 2

2

像这样 -

function change(){
  $('#migrate_stamp').animate({ backgroundColor: '#000000' }, 'slow',function(){
     $('#migrate_stamp').animate({ backgroundColor: '#00B312' }, 'slow',change);
  });
}
于 2013-06-17T13:29:05.860 回答
0

尝试

var el = $('span');
setInterval(function() {
   el.toggleClass('blinking');
}, 1000);

这是http://jsfiddle.net/gLEuP/146/

于 2013-06-17T13:31:08.017 回答