Bonjour à tous,j'ai installé pour un projet un slider avec keyframes et background-image car je ne connaispas JS.
mon image reduit lors du resize de ma page sans problème mais la div dans laquelle elle est installée ne se reduit pas du coup un écart se créé entre mon image et les reste de la page!!!
help me
<section class="slider_bckg"><!--ici 1ère section-->
<div class="diaporama1"></div><!--ici slider en background-image-->
<div class="annonce">
<h1><strong>WEBAGENCY</strong> : L'AGENCE DE TOUS VOS PROJETS
!</h1>
<p>Vous avez un projet web? La <em>WebAgency</em> vous aide à le
réaliser!</p>
<a href="#" class="btn">Plus d'infos</a>
</div>
</section>
et mon css!!!
.slider_bckg{
width: 100%;
height: 37rem;
position: relative;
top: 8rem;
}
.diaporama1{
background-image: url("../images/slider/bg1.jpg");
background-size: 100%;
background-repeat: no-repeat;
position: relative;
top: 0rem;
width: 100vw;
height: 100%;
-webkit-animation-name: diapo1;
-webkit-animation-duration: 15s;
-webkit-animation-timing-function: linear;
-webkit-animation-iteration-count: infinite;
-webkit-animation-direction: normal;
-moz-animation-name: diapo1;
-moz-animation-duration: 15s;
-moz-animation-timing-function: linear;
-moz-animation-iteration-count: infinite;
-moz-animation-direction: normal;
animation-name: diapo1;
animation-duration: 15s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: normal;
}
@-webkit-keyframes diapo1{
0%, 45%{background-image: url("../images/slider/bg1.jpg");}
50%, 95%{background-image: url("../images/slider/bg2.jpg");}
100%{background-image: url("../images/slider/bg1.jpg");}
}
@-moz-keyframes diapo1{
0%, 45%{background-image: url("../images/slider/bg1.jpg");}
50%, 95%{background-image: url("../images/slider/bg2.jpg");}
100%{background-image: url("../images/slider/bg1.jpg");}
}
@keyframes diapo1{
0%, 45%{background-image: url("../images/slider/bg1.jpg");}
50%, 95%{background-image: url("../images/slider/bg2.jpg");}
100%{background-image: url("../images/slider/bg1.jpg");}
}
Merci pour vos réponses
Modifié par darkodeur (19 May 2017 - 00:15)