Bonjour à tous !
Je reviens avec un nouveau problème.. Ça fait quelques jours que je suis dessus, et je ne m'en sors vraiment pas!
J'ai crée une bannière avec plusieurs petites images dedans, et je souhaiterais que lorsque je passe ma souris dessus, qu'elle devienne un peu plus transparente pour faire apparaitre le titre de l'entreprise.
J'ai tenté avec un Hover, mais ça ne marche pas, et je ne comprends pas pourquoi .. :euh:
Voici mon code html :
Merci pour votre aide, bonne journée !
Je reviens avec un nouveau problème.. Ça fait quelques jours que je suis dessus, et je ne m'en sors vraiment pas!
J'ai crée une bannière avec plusieurs petites images dedans, et je souhaiterais que lorsque je passe ma souris dessus, qu'elle devienne un peu plus transparente pour faire apparaitre le titre de l'entreprise.
J'ai tenté avec un Hover, mais ça ne marche pas, et je ne comprends pas pourquoi .. :euh:
Voici mon code html :
<div id="content-slider2">
<div id="slider2">
<div id="conteneur2">
<div class="elem1"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP1.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem2"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP2.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem3"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP3.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem4"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP4.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem5"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP5.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem6"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP6.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem7"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP7.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem8"><div class="rotateInDownLeft"><img class="photo2" src="images/EnginsTP/TP8.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem9"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP9.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem10"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP10.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem11"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP11.jpg" alt="Cougar" width="130" /></div></div>
<div class="elem12"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP12.jpg" alt="Cougar" width="130" height="100"/></div></div>
<div class="elem13"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP13.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem14"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP14.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem15"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP15.jpg" alt="Cougar" width="130"/></div></div>
<div class="elem16"><div class="rotateInDownLeft"><img class="photo1" src="images/EnginsTP/TP5.jpg" alt="Cougar" width="130" /></div></div>
</div>
</div>
</div>
.rotateInDownLeft {
-webkit-animation-name: rotateInDownLeft;
animation-name: rotateInDownLeft;
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
@-webkit-keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
@keyframes rotateInDownLeft {
0% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: rotate3d(0, 0, 1, -45deg);
transform: rotate3d(0, 0, 1, -45deg);
opacity: 0;
}
100% {
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
-webkit-transform: none;
transform: none;
opacity: 1;
}
}
#content-slider2 {
height: 335px;
width: 100%;
border-radius: 10px;
z-index:-10;
}
#slider2 {
height: 200px;
margin: 10px auto;
overflow: visible;
position: relative;
width: 80%;
border-radius: 10px;
margin-top: 3%;
z-index: -1;
}
Merci pour votre aide, bonne journée !