Bonsoir,
Je vous écrit car j'ai un gros problème, j'ai créer un slideshow mais il ne marche que sur Firefox hors j'aimerais qu'il marche sur tous les explorateurs.
Voici mon code:
Je vous écrit car j'ai un gros problème, j'ai créer un slideshow mais il ne marche que sur Firefox hors j'aimerais qu'il marche sur tous les explorateurs.
Voici mon code:
<div class="slide">
<img class="photo1" src='images/paris.jpg' width="860" height="349" alt=""/>
<img class="photo2" src='images/devanture.jpg' width="860" height="349" alt=""/>
<img class="photo3" src='images/hall.jpg' width="860" height="349" alt=""/>
<img class="photo4" src='images/balcon.jpg' width="860" height="349" alt=""/>
</div>
.slide
{
width:860px;
height:349px;
margin:0 auto;
}
.slide photo1
{
position: absolute;
animation: round 25s infinite;
-webkit-animation:round 25s infinite;
-moz-animation: round 25s infinite;
-o-animation: round 25s infinite;
-ms-animation: round 25s infinite;
opacity: 0;
top: 19px;
}
.slide photo2
{
position: absolute;
animation: round 25s infinite;
-webkit-animation:round 25s infinite;
-moz-animation: round 25s infinite;
-o-animation: round 25s infinite;
-ms-animation: round 25s infinite;
opacity: 0;
top: 19px;
}
.slide photo3
{
position: absolute;
animation: round 25s infinite;
-webkit-animation:round 25s infinite;
-moz-animation: round 25s infinite;
-o-animation: round 25s infinite;
-ms-animation: round 25s infinite;
opacity: 0;
top: 19px;
}
.slide photo4
{
position: absolute;
animation: round 25s infinite;
animation: round 25s infinite;
-webkit-animation:round 25s infinite;
-moz-animation: round 25s infinite;
-o-animation: round 25s infinite;
-ms-animation: round 25s infinite;
opacity: 0;
top: 19px;
}
@keyframes round
{
25%{opacity:1;}
50%{opacity:0;}
}
img:nth-child(1){animation-delay:0s;}
img:nth-child(2){animation-delay:5s;}
img:nth-child(3){animation-delay:10s;}
img:nth-child(4){animation-delay:15s;}