0
我使用下面的代碼爲chage背景色添加動畫。但所有背景顏色都會在效果後變暗。jquery動畫黑色全部背景色
<script src="js/jquery-1.11.3.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/jquery.color-2.1.2.min.js"></script>
<script>
$('#span1').animate({backgroundColor:'green'},2000);// return black bg
$('#span2').animate({backgroundColor:'red'},2000);// return black bg
$('#span3').animate({backgroundColor:'orange'},2000);// return black bg
</script>