ウェブサイトの背景の色が数秒ごとにランダムに変わるようにしようとしています。ランダムな色に変更することはできますが、ループさせるにはどうすればよいですか?
<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>