46、随机显示背景图片
类别: JavaScript教程
====1、将以下代码加入HTML的<head></head>之间:
<script LANGUAGE="JavaScript">
bg = new Array(2); //设定图片数量,如果图片数为3,这个参数就设为2,依次类推
bg[0] = \'bg1.gif\' //显示的图片路径,可用http://
bg[1] = \'bg2.gif\'
bg[2] = \'bg3.gif\'
index = Math.floor(Math.random() * bg.length);
document.write("<BODY BACKGROUND="+bg[index]+">");
</script>
<script LANGUAGE="JavaScript">
bg = new Array(2); //设定图片数量,如果图片数为3,这个参数就设为2,依次类推
bg[0] = \'bg1.gif\' //显示的图片路径,可用http://
bg[1] = \'bg2.gif\'
bg[2] = \'bg3.gif\'
index = Math.floor(Math.random() * bg.length);
document.write("<BODY BACKGROUND="+bg[index]+">");
</script>
- 上一篇: 45、永远居中的背景图片
- 下一篇: 47、滚动背景效果
-= 资 源 教 程 =-
文 章 搜 索