是否有更优雅的解决方案来平滑地连续更改跨度颜色(绿色,黑色,绿色,黑色等)?
setInterval(function() {
$('#migrate_stamp').animate({ backgroundColor: '#000000' }, 'slow');
$('#migrate_stamp').animate({ backgroundColor: '#00B312' }, 'slow');
}, 1000);
谢谢
最佳答案
像这样 -
function change(){
$('#migrate_stamp').animate({ backgroundColor: '#000000' }, 'slow',function(){
$('#migrate_stamp').animate({ backgroundColor: '#00B312' }, 'slow',change);
});
}
关于javascript - jQuery不断更改跨度颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17148626/