Bonjours , je sais qu'il existe des sujet sur cela mais cela marche pas dans mon cas
je souhaite lier un fichier css a une image bouton mais je n'y arrive pas
Modifié par Kyllzen (16 Jan 2018 - 00:26)
je souhaite lier un fichier css a une image bouton mais je n'y arrive pas
<div class="bouton"><a href="index.html"><img style="position: absolute;top:104px;left:927px;width:246px" src="la carte.png"></img></div>
/* Halo lumineux */
.light div {
position: relative;
}
.light div::before {
position: absolute;
top: 50%;
left: 50%;
z-index: 2;
display: block;
content: '';
width: 0;
height: 0;
background: rgba(255,255,255,.2);
border-radius: 100%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
opacity: 0;
}
.light div:hover::before {
-webkit-animation: circle .75s;
animation: circle .75s;
}
@-webkit-keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}
@keyframes circle {
0% {
opacity: 1;
}
40% {
opacity: 1;
}
100% {
width: 200%;
height: 200%;
opacity: 0;
}
}
Modifié par Kyllzen (16 Jan 2018 - 00:26)