<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
#fu_img img{
width: 100px;
border: 1px solid lightgoldenrodyellow;
}
#zhu_img {
border: 1px solid red;
width: 500px;
height: 500px;
}
#zhu_img img{
width: 500px;
}
#fu_img img:hover{
cursor: pointer;
border: 1px solid red;
}
</style>
<script>
window.onload = function(){
img = document.getElementById("img");
}
function over(obj){
img.src = obj.src;
}
</script>
</head>
<body>
<div id="zhu_img">
<img id="img" src="img/01.jpg" />
</div>
<div id="fu_img">
<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>
主图展示
最新推荐文章于 2025-05-04 13:53:25 发布