|
<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 1 个步骤: -->
<!-- 第 1 步: --> <!-- 把下面的代码加到<BODY></BODY>区域中: -->
<script LANGUAGE="JavaScript">
bg = new Array(2); //设定图片数量,如果图片数为3,这个参数就设为2,依次类推
bg[0] = 'images/webasp.net.1.jpg' //显示的图片路径,可用http://
bg[1] = 'images/webasp.net.2.jpg'
bg[2] = 'images/webasp.net.3.jpg'
index = Math.floor(Math.random() * bg.length);
document.body.background=bg[index];
</script>
|