<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
a {
display: inline-block;
text-decoration: none;
width: 120px;
height: 58px;
text-align: center;
line-height: 54px;
color: #3f3f3f;
}
.one {
background-image: url(../01-案例/images/bg1.png);
position: fixed;/*固定定位*/
top: 0%;
left: 0%;
}
.two {
background-image: url(../01-案例/images/bg2.png);
position: fixed;/*固定定位*/
top: 0%;
left: 25%;
}
.three {
background-image: url(../01-案例/images/bg3.png);
position: fixed;/*固定定位*/
top: 0%;
left: 50%;
}
.three img {
display: none;
position: absolute;
bottom: -130px;
left: 0;
}
.four {
background-image: url(../01-案例/images/bg4.png);
position: fixed;/*固定定位*/
top: 0%;
left: 75%;
}
.one:hover {
background-image: url(../01-案例/images/bg5.png);
color: white;
}
.two:hover {
background-image: url(../01-案例/images/bg6.png);
color: white;
}
.three:hover {
background-image: url(../01-案例/images/bg7.png);
color: white;
}
.three:hover img {
display: block;
}
.four:hover {
background-image: url(../01-案例/images/bg8.png);
color: white;
}
</style>
</head>
<body>
<a href="#" class="one">五彩导航</a>
<a href="#" class="two">五彩导航</a>
<a href="#" class="three">
五彩导航
<img src="../code.jpg" alt="">
</a>
<a href="#" class="four">五彩导航</a>
</body>
</html>