<body>
<script language="JavaScript">
<!--
var no = 30//泡泡的数量
var speed = 1
var ns4up = (document.layers) ? 1 : 0
var ie4up = (document.all) ? 1 : 0
var s, x, y, sn, cs
var a, r, cx, cy
var i, doc_width = 800, doc_height = 600
if (ns4up) {
doc_width = self.innerWidth
doc_height = self.innerHeight
}
else
if (ie4up) {
doc_width = document.body.clientWidth
doc_height = document.body.clientHeight
}
x = new Array()
y = new Array()
r = new Array()
cx = new Array()
cy = new Array()
s = 8
for (i = 0i <no++ i) {
initRain()
if (ns4up) {
if (i == 0) {
//以下有些是对泡泡的颜色及泡泡符号的设置,○改为别的,那么往下掉的就不是泡泡了
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ")
document.write("top=\"1\" visibility=\"show\"><font color=\"#99CCFF\">")
document.write("○</font></layer>")
}
else {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ")
document.write("top=\"1\" visibility=\"show\"><font color=\"#99CCFF\">")
document.write("○</font></layer>")
}
}
else
if (ie4up) {
if (i == 0) {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ")
document.write("absoluteZ-INDEX: "+ i +"VISIBILITY: ")
document.write("visibleTOP: 15pxLEFT: 15px\"><font color=\"#99CCFF\">")
document.write("○</font></div>")
}
else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ")
document.write("absoluteZ-INDEX: "+ i +"VISIBILITY: ")
document.write("visibleTOP: 12pxLEFT: 12px\"><font color=\"#99CCFF\">")
document.write("○</font></div>")
}
}
}
function initRain() {
a = 6
r[i] = 1
sn = Math.sin(a)
cs = Math.cos(a)
cx[i] = Math.random() * doc_width + 1
cy[i] = Math.random() * doc_height + 1
x[i] = r[i] * sn + cx[i]
y[i] = cy[i]
}
function makeRain() {
r[i] = 1
cx[i] = Math.random() * doc_width + 1
cy[i] = 1
x[i] = r[i] * sn + cx[i]
y[i] = r[i] * cs + cy[i]
}
function updateRain() {
r[i] += s
x[i] = r[i] * sn + cx[i]
y[i] = r[i] * cs + cy[i]
}
function raindropNS() {
for (i = 0i <no++ i) {
updateRain()
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain()
doc_width = self.innerWidth
doc_height = self.innerHeight
}
document.layers["dot"+i].top = y[i]
document.layers["dot"+i].left = x[i]
}
setTimeout("raindropNS()", speed)
}
function raindropIE() {
for (i = 0i <no++ i) {
updateRain()
if ((x[i] <= 1) || (x[i] >= (doc_width - 20)) || (y[i] >= (doc_height - 20))) {
makeRain()
doc_width = document.body.clientWidth
doc_height = document.body.clientHeight
}
document.all["dot"+i].style.pixelTop = y[i]
document.all["dot"+i].style.pixelLeft = x[i]
}
setTimeout("raindropIE()", speed)
}
if (ns4up) {
raindropNS()
}
else
if (ie4up) {
raindropIE()
}
-->
</script>
</body>
制作方法:
将下列代码输入html软件
页面初始化效果:
问题分析:
HTML中的浮动窗口,可以使用CSS的定位方式完成,同时使用这种方式来完成这个功能也是一种较为简单的方式,只需要有HTML以及CSS的知识就可以完成了。
举例如下:
在以下示例中,将演示页面左右两侧分别放置一个高度为500像素,宽度为200像素的浮动窗口。示例中使用的定位方式为:固定定位(fixed),所有它们将永远的跟随页面进行滚动。
超文本标记语言,标准通用标记语言下的一个应用。
“超文本”就是指页面内可以包含图片、链接,甚至音乐、程序等非文字元素。
超文本标记语言的结构包括“头”部分(英语:Head)、和“主体”部分(英语:Body),其中“头”部提供关于网页的信息,“主体”部分提供网页的具体内容。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)