<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
#img_show img{
width: 500px;
}
#small_show img{
width: 100px;
/*border: 1px solid #eeeeee;*/
}
#small_show img:hover{
cursor: pointer;
border: 1px solid red;
}
</style>
<script>
window.onload=function(){
photo = document.getElementById("photo");
}
function over(obj){
photo.src=obj.src;
}
</script>
</head>
<body>
<div id="img_show">
<img id="photo" src="img/01.jpg" />
</div>
<div id="small_show">
<img src="img/01.jpg" onmouseover="over(this)" />
<img src="img/02.jpg" onmouseover="over(this)"/>
<img src="img/03.jpg" onmouseover="over(this)"/>
<img src="img/04.jpg" onmouseover="over(this)"/>
<img src="img/05.jpg" onmouseover="over(this)"/>
</div>
</body>
</html>
网页特效
最新推荐文章于 2024-09-03 09:51:41 发布