CODE CSS
body {
margin-right:0;
margin-left:0;
font-size: 13px;
font-family: Verdana;
color:#000;
}
#contenu {
position:absolute; // IMPORTANT
z-index:1000; // IMPORTANT
width:100%;
}
.website{
background-color:#fff;
border:2px #000 solid;
padding:20px;
width:580px;
position:absolute; // IMPORTANT
z-index:10000; // IMPORTANT
margin:20px;
}
.menu {
right:0;
top:0;
text-align:right;
position:relative; // IMPORTANT
z-index:1500; // IMPORTANT
}
.menu_font {
position:relative; // IMPORTANT
z-index:1500;
font-size: 50px;
font-family: Verdana;
color:#ffffff;
}
.menu_font a {
color:#ffffff;
text-decoration:none;
}
.menu_font a:hover {
color:#ffffff;
text-decoration:none;
}
#conteneur {
position:absolute; // IMPORTANT
z-index:1400; // IMPORTANT
right:0;
top:0;
width:300px;
overflow:hidden; // IMPORTANT
border:0px #ff0000 solid;
}
/* BLOC QUI APPARAISSENT DE LA GAUCHE */
#conteneur_left {
background: url(bg.png) repeat-x top left;
position:absolute; // IMPORTANT
z-index:1400; // IMPORTANT
left:-1px;
top:0;
border:0px #ff0000 solid;
}
#conteneur_left1 {
background: url(bg.png) repeat-x top left;
position:absolute;
z-index:1400;
left:-1px;
top:60px;
border:0px #ff0000 solid;
}
#conteneur_left2 {
background: url(bg.png) repeat-x top left;
position:absolute;
z-index:1400;
left:-1px;
top:120px;
border:0px #ff0000 solid;
}
#conteneur_left3 {
background: url(bg.png) repeat-x top left;
position:absolute;
z-index:1400;
left:-1px;
top:180px;
border:0px #ff0000 solid;
}
CODE JAVASCRIPT
$('span#home').mouseover(function() {
var test = $(window).width();
var minus = test-300;
$("#conteneur").animate({top: "0",width: "300"}, 90 );
$("#conteneur_left").animate({width: minus}, 200);
});
$('span#client').mouseover(function() {
var test = $(window).width();
var minus = test-360;
$("#conteneur").animate({top: "60",width: "360"}, 90 );
$("#conteneur_left1").animate({width: minus}, 200 );
});
$('span#contact').mouseover(function() {
var test = $(window).width();
var minus = test-300;
$("#conteneur").animate({top: "120",width: "300"}, 90 );
$("#conteneur_left2").animate({width: minus}, 200 );
});
$('span#blog').mouseover(function() {
var test = $(window).width();
var minus = test-200;
$("#conteneur").animate({top: "180",width: "200"}, 90 );
$("#conteneur_left3").animate({width: minus}, 200 );
});
$('span#blog').mouseout(function() {
$("#conteneur_left3").animate({ width: "0" }, 200 );
});
$('span#home').mouseout(function() {
$("#conteneur_left").animate({ width: "1" }, 200 );
});
$('span#client').mouseout(function() {
$("#conteneur_left1").animate({ width: "1"}, 200 );
});
$('span#contact').mouseout(function() {
$("#conteneur_left2").animate({width: "1"}, 200 );
});