我正在制作一些背景变化缓慢但颜色变快的东西所以我想知道是否有网络js的睡眠命令
答案 0 :(得分:0)
如果要更改它,可以使用setInterval:
var colors = ['red', 'green', 'blue']
var count = 0;
setInterval(function () {
document.body.style.backgroundColor = colors[count];
count ++ ;
if(count >= colors.length){
count = 0;
}
},1000)
答案 1 :(得分:0)
如果你正在尝试做一个动画或转换只是一个背景读取有关css中的转换,并为了性能和简单而使用css。
答案 2 :(得分:0)
CSS动画是一个很好的方法。
@keyframes example {
from {background-color: red;}
to {background-color: purple;}
}
div {
width: 100px;
height: 100px;
background-color: red;
/* Reference her here */
animation-name: example;
animation-duration: 4s;
}