时间:2021-04-16
运行时,按F5便可看效果!
<script>
s=new Array(3)
s[0]=Math.floor(Math.random()*256)+""
s[1]=Math.floor(Math.random()*256)+""
s[2]=Math.floor(Math.random()*256)+""
a=s[0]+s[1]+s[2]
document.write("<body bgcolor="+a+">")
document.write("</body>")
</script>
<script>
s="icon/icon"+Math.floor(Math.random()*18)+".gif"
document.write("<body background="+s+">")
document.write("</body>")
</script>
红绿蓝三种颜色:
<script>
s=new Array(3)
s[0]="ff0000"
s[1]="00ff00"
s[2]="0000ff"
i=Math.floor(Math.random()*3)
document.write("<body bgcolor="+s[i]+">")
document.write("</body>")
</script>
按钮上:
<script>
s=new Array(3)
s[0]="ff0000"
s[1]="00ff00"
s[2]="0000ff"
i=Math.floor(Math.random()*3)
document.write("<input type='button' value='按钮' style=background-color:"+s[i]+">")
</script>
随机显示图片:
将以下代码加在<head>与</head>之间。
<script LANGUAGE="JavaScript">
bg = new Array(3); //设定图片数量2
bg[1] = 'icon/1.gif' //显示的图片路径
bg[2] = 'icon/2.gif'
bg[3] = 'icon/3.gif'
index = Math.floor(Math.random()*bg.length);
document.write("<BODY BACKGROUND="+bg[index]+">");
</script>
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
axure制作网页如何适应不同计算机的分辨率?制作网页时如何设置背景?在网页设计中,空格是如何显示的?下面就来一起看看吧! axure制作网页如何适应不同
我们经常上网,浏览他人的网站,应该会发现在不同的网站上,甚至同一个网站的不同页面上,都会有各式各样的不同的背景设计。在网页设计中,背景设计相当重要,特别是对于个
网页设计中图像的作用。网页在网页中版式设计时候所存在的位置和图片属性有所不同,会直接影响到网页风格的不同。图形可以在网页中作为标志、网页的导航、网页的背景、网页
随机背景--当你每次进入该页面时,从已指定的图片文件夹中,随机选取一个图片作为背景显示。这里介绍的方法是用ASP+CSS来实现的。ASP程序以下是引用片段:
本文介绍了ASP程序生成随机背景的方法,即,当你每次进入该页面时,从已指定的图片文件夹中,随机选取一个图片作为背景显示。这里介绍的方法是用ASP+CSS来实现的