
A ce jour j'ai juste eu le temps de réaliser une animation test avec une vidéo en fon d'ecran en 100% avec un bandeau ou sera afficher le titre du système et du jeu .. des artworks viendront agrémenter le tout


Modérateurs : vik, Modérateurs
Je viens de mettre a jour le fichier CSS,camarade35 a écrit : @aruka : j'ai testé les animations, c'est vraiment rapide et pratique au final, tu place l'image/vidéos en position finale et hop, animlated, cool.
Juste un truc, est-il possible, de mettre un "delay" et de choisir la vitesse de celle-ci ?
Merci pour ton retour.
Code : Tout sélectionner
.speed-1s {animation-duration: 1s !important;}
.speed-2s {animation-duration: 2s !important;}
.speed-3s {animation-duration: 3s !important;}
.speed-4s {animation-duration: 4s !important;}
.speed-5s {animation-duration: 5s !important;}
.speed-6s {animation-duration: 6s !important;}
.speed-7s {animation-duration: 7s !important;}
.speed-8s {animation-duration: 8s !important;}
.speed-9s {animation-duration: 9s !important;}
.speed-10s {animation-duration: 10s !important;}
Code : Tout sélectionner
.delay-1s {animation-delay: 1s !important;}
.delay-2s {animation-delay: 2s !important;}
.delay-3s {animation-delay: 3s !important;}
.delay-4s {animation-delay: 4s !important;}
.delay-5s {animation-delay: 5s !important;}
.delay-6s {animation-delay: 6s !important;}
.delay-7s {animation-delay: 7s !important;}
.delay-8s {animation-delay: 8s !important;}
.delay-9s {animation-delay: 9s !important;}
.delay-10s {animation-delay: 10s !important;}
Code : Tout sélectionner
.animated {
-webkit-animation-duration: 1s;
animation-duration: 1s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
Code : Tout sélectionner
.animated {
-webkit-animation-duration: 2.5s;
animation-duration: 2.5s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
Code : Tout sélectionner
<img src="assets/NES-Console-Set.png" class="gwd-img-z1kw fadeInLeft animated speed-5s" id="nes">
Code : Tout sélectionner
<head>
<meta charset="utf-8">
<title>Base Zspin</title>
<meta name="generator" content="Google Web Designer 1.6.1.0726">
<link rel="stylesheet" href="assets/animate.css">
<style type="text/css">
Oui, j'avais des bonnes bases en HTML 3.2 et les CSS qui vont avec, Maintenant en 5.0 et CSS 3.3 je doit apprendre les nouvelles fonctions...babamimi262626 a écrit :salut Playmobil tu t'en sort avec gwd ?
Code : Tout sélectionner
.info_bandeau {
position: absolute;
z-index: 3;
height: 13%;
width: 100%;
background-image: none;
left: 0%;
top: 90%;
background-color: rgba(165, 2, 3, 0.6);
}
Code : Tout sélectionner
<div class="info_bandeau" id="bandeau">
</div>