<ul>
<li></li>
<li></li>
……
</ul>
但是也能用div+css模拟。
这样的一个导航可以交给专门的美工人员做,不是很难的。有很多学生组织和社会组织的集体都能做 。你要是给我背景图片的素材我都能做。
如果你是想学的话,那么建议从html+css学起
网页模板就是已经做好的网页框架,使用网页编辑软件输入自己需要的内容,再发布到自己的网站。你通过千站素材可以下载很多的成品模板以及该模板带有的一套网站系统。通过html网页模板搭建网站有利于保持网页风格的一致;提高工作效率。
你算是找对人了1、背景(下雨的,将下列代码放入<body>中即可,很漂亮喔)
<script language="JavaScript">
<!--
var no = 50
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=\"grade\">")
document.write("/</font></layer>")
}
else {
document.write("<layer name=\"dot"+ i +"\" left=\"1\" ")
document.write("top=\"1\" visibility=\"show\"><font color=\"grade\">")
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=\"grade\">")
document.write("/</font></div>")
}
else {
document.write("<div id=\"dot"+ i +"\" style=\"POSITION: ")
document.write("absoluteZ-INDEX: "+ i +"VISIBILITY: ")
document.write("visibleTOP: 15pxLEFT: 15px\"><font color=\"grade\">")
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>
2、视频或音乐播放器(<body>中,如果是视频,要WMV格式的)
<embed src="周杰伦 - 跨时代.mp3" autostart="true" loop="infinite" width="400" height="300">
背景音乐:<bgsound src="周杰伦 - 跨时代.mp3" loop="2">
3、链接<a>原本是有下划线的 你是不是要 一开始没有下划线 鼠标放上去显示下划线 字体还变会色呢?在</head>下加入
<style>
a{text-decoration:nonefont-size:14px}
a:hover{text-decoration:underlinecolor:#00FFFF}
</style>
//字体大小font-size、color 自己调喔
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)