|
|
| 改变网页背景图片 |
| 整理:Cnwshow.Com 来源:Internet 整理时间:2008-4-25 |
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>改变网页背景图片</title>
</head>
<body>
<script language="JavaScript1.2">
<!--
function tile(){
if (!document.all)
return
var source=event.srcElement
if (source.tagName=="IMG")
document.body.style.backgroundImage="url("+source.src+")"
}
function restore(){
document.body.style.backgroundImage=''
}
document.body.ondblclick=restore
-->
</script>
<p align="center"><span class="bgimages" onClick="tile();event.cancelBubble=true">
<img src="mini_01.jpg" height=60 width=60 border=2>
<img src="mini_02.jpg" height=60 width=60 border=2><br>
<img src="mini_03.jpg" height=60 width=60 border=2>
<img src="mini_04.jpg" height=60 width=60 border=2></span></p>
</center>
图片可以根据需要换上自己的.
</body>
</html>
|
|
|
|
|
|