我正在努力做到这一点,以便我的网站背景每隔几秒钟随机改变一次颜色。我可以让它变成一个随机的颜色,但我怎么让它循环呢?
<script type="text/javascript">
$(document).ready(function() {
var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
function colourSet(){
$("body").animate({ backgroundColor: hue}, 2000);
}
colourSet();
});
</script>