我目前有:
<script type='text/javascript'>
var imageID=0;
function changeimage(every_seconds){
//change the image
if(!imageID){
document.getByTagName("body").src="icwXI.jpg";
imageID++;
}
else{if(imageID==1){
document.getByTagName"body").src="JvuP9.jpg";
imageID++;
//call same function again for x of seconds
setTimeout("changeimage("+every_seconds+")",((every_seconds)*20));
</script>
</head>
<body style='background: url(icwXI.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover;' onload='changeimage(1)'>
目的是让身体背景图像最初加载 icwXI.jpg,然后在 20 秒后更改为 JvuP9.jpg,然后再过 2 秒再循环回到 icwXI.jpg。
但是它似乎不起作用,我的 JavaScript 技能非常有限。
谢谢你。