1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Document sans nom</title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
ul {
list-style: none;
width: 800px;
height: 50px;
line-height: 50px;
margin: 0 auto;
}
ul li {
float: left;
display: block;
height: 100%;
width: 200px;
text-align: center;
}
ul li a {
display: block;
width: 100%; height: 100%;
text-decoration: none;
color: #FFF;
background: #000;
}
ul li a:hover {
background: #FF6600;
}
#slider {
width: 800px;
height: 200px;
margin: 0 auto;
}
#slider img {
position: absolute;
}
.noDisplay {
display: none;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".elmNav").mouseover(function(){
id = this.id;
$("#slider img").fadeOut("fast", function(){
$("#slider #img"+id).fadeIn("fast");
});
});
});
</script>
</head>
<body>
<ul>
<li><a id="lien1" class="elmNav" href="#">Lien numero 1</a></li>
<li><a id="lien2" class="elmNav" href="#">Lien numero 2</a></li>
<li><a id="lien3" class="elmNav" href="#">Lien numero 3</a></li>
<li><a id="lien4" class="elmNav" href="#">Lien numero 4</a></li>
</ul>
<div id="slider">
<img id="imglien1" src="1.jpg" class="" />
<img id="imglien2" src="2.jpg" class="noDisplay" />
<img id="imglien3" src="3.jpg" class="noDisplay" />
<img id="imglien4" src="4.jpg" class="noDisplay" />
</div>
</body>
</html> |
Partager