JavaScript变换背景和字体颜色。在页面上显示一句话: “自动变换颜色”
1个回答
2015-06-29
展开全部
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>
RunJS 演示代码
</title>
<script>
var array = ['red', 'green', 'blue'], index = -1;
onload=function(){
setInterval(function(){
index++;
index = index > array.length - 1 ? 0 : index;
div.style.color = array[index];
}, 500);
}
</script>
</head>
<body>
<div id="div">
自动变换颜色
</div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询