Bonjour, bonsoir,
tout d'abord voilà le site que j'ai commencé hier :
http://www.yannchapuis.fr/
J'ai un petit problème que je n'arrive pas a régler... c'est le "entrer" de la première page, qui zoom, comme prévu, mais qui se dézoom directement après. Contrairement aux images sur la page d'après, qui restent zoomés tant qu'on a le curseur dessus.
Savez vous d'où ça vient ?
ps : J'ai utilisé le "transform:scale(2);" pour zoomer (plutôt que d'augmenter le size dans le :hover), question d'effets.
Mon code :
___________________________________________________________________________
html{
height:100%;}
body {
background-image:url("../images/bg.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
/*height:100%;*/
}
- au_centre{
margin-top: 18%;
margin-bottom: 18%;
text-align:center;
}
- entrer {
color:white;
font-size:36;
font-family: 'Lato', sans-serif;
font-weight:100, bold;
margin-top:1%;
margin-bottom:1%;
}
- entrer a {
padding:0%;
transition-property:height border transform;
transition-duration:1s;
}
- entrer a:link {
color:white;
font-size:36;
text-decoration : none;
}
- entrer a:hover {
transform:scale(2);
transition-property:height border transform;
transition-duration:1s;
text-decoration : none;
}
- entrer a:visited {
color:white;
text-decoration : none;
}
- integrateur {
color:white;
font-size:36;
font-family:Trajan Pro;
padding-bottom:1%;
border-bottom:dotted;
border-width:1px;
font-family: 'Lato', sans-serif;
font-weight:100;
}
- creation {
color:white;
font-size:36;
font-family:Trajan Pro;
padding-top:1%;
border-top:dotted;
border-width:1px;
font-family: 'Lato', sans-serif;
font-weight:100;
}
_____________________________________________________________________________
merci d'avance !