Bonjour à tous,
J'ai un souci CSS3 sur des bannières HTML5 pour mon client qui me dit que sous Android les éléments d'anim disparaissent les uns après les autres.... sur iOS phones & tablettes, Chrome ou Safari, c'est parfait.
J'ai testé sur le LG Optimus de mon amie le bug existe bien... Quelqu'un a un Android et pourrait me dire s'il constate le bug ? Voici l'URL pour tester :
http://sebastien-baudrier.com/freelance/android/
Avez-vus une idée du problème par hasard ?
Mon code d'animation est le suivant (vous pouvez aussi regarder le code source entier, j'ai mis les CSS sur la page HTML) :
J'ai un souci CSS3 sur des bannières HTML5 pour mon client qui me dit que sous Android les éléments d'anim disparaissent les uns après les autres.... sur iOS phones & tablettes, Chrome ou Safari, c'est parfait.
J'ai testé sur le LG Optimus de mon amie le bug existe bien... Quelqu'un a un Android et pourrait me dire s'il constate le bug ? Voici l'URL pour tester :
http://sebastien-baudrier.com/freelance/android/
Avez-vus une idée du problème par hasard ?
Mon code d'animation est le suivant (vous pouvez aussi regarder le code source entier, j'ai mis les CSS sur la page HTML) :
.bannerHtml5 #text1,.bannerHtml5 #text2,.bannerHtml5 #icon1,.bannerHtml5 #icon2,.bannerHtml5 #icon3,.bannerHtml5 #icon4,.bannerHtml5 #icon5,.bannerHtml5 #button {
opacity: 0;
-webkit-animation-duration: 3s;
-webkit-animation-play-state: running;
-webkit-animation-fill-mode: both;
-webkit-animation-name: fadein;
-webkit-animation-iteration-count:1;
/*-webkit-animation: fadein 3s linear 0 2 alternate;*/
}
@-webkit-keyframes fadein {
from {opacity: 0;} to {opacity: 1;}
}
.bannerHtml5 #icon1 {-webkit-animation-delay: 0.5s;}
.bannerHtml5 #icon2 {-webkit-animation-delay: 0.8s;}
.bannerHtml5 #icon3 {-webkit-animation-delay: 1.1s;}
.bannerHtml5 #icon4 {-webkit-animation-delay: 1.4s;}
.bannerHtml5 #icon5 {-webkit-animation-delay: 1.7s;}
.bannerHtml5 #text2 {-webkit-animation-delay: 3s;}
.bannerHtml5 #button {-webkit-animation-delay: 3.5s;}