下面显示的是我的 html 代码的格式。在标题 div 我有一个图像。包含 div 内的每个框(框 1、框 2、框 3)都有链接(软件开发(框 1)、图形设计(框 2)和技术培训(框 3))。单击这些链接时,我将转到具有它们的单独页面自己的标题图像。所以我为每个框有 3 个标题图像和主页中的默认标题图像。在主页中,当我将鼠标悬停在 box1 div 中时,标题图像应该更改为具有效果的 box1 标题图像像fadeIn并在鼠标移出时返回我的默认图像。box2和box3也是如此。请帮助我用CSS或JS或jQuery做这件事。谢谢
<body>
<div class="wrapper">
<div class="out">
<div class="in">
<div id="header"></div>
<div class="contain">
<div class="box1"></div>
<div class="box2"></div>
<div class="box3"></div>
</div>
</div>
</div>
</div>
</body>
CSS:
.wrapper{
width: 100%
height: auto;
margin: 0px;
}
.out{
margin: auto;
width: 1000px;
height: 730px;
border-top: 5px solid #333333;
}
.in{
width: 900px;
height: 640px;
margin: auto;
margin-top: 25px;
}
#header{
background:url(../img/Untitled-1.jpg);
height: 175px;
width: 900px;
margin: 0px;
}
.contain{
margin: 0px;
width: 900px;
height: 428px;
}
.box1{
height: 360px;
width: 295px;
float: left;
margin: 67px 0px 0px 0px;
position: absolute;
background-color: #e6e7e9;
border-bottom: 4px solid #735d8c;
}
.box2{
height: 360px;
width: 295px;
float: left;
margin: 67px 0px 0px 302px;
position: absolute;
background-color: #e6e7e9;
border-bottom: 4px solid #735d8c;
}
.box3{
height: 360px;
width: 295px;
float: left;
margin: 67px 0px 0px 602px;
position: absolute;
background-color: #e6e7e9;
border-bottom: 4px solid #735d8c;
}