Du plus bel effet
Créé par David LAURENT | TMI | Webinnov™
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
.objet{ position:absolute; z-index:30; width:270px; height:155px; background-image: url(../img/*.png); left: *px; top: *px; background-repeat: no-repeat; opacity:0; /* global */ animation-delay:6s; animation-duration:3.2s; animation-iteration-count:1; animation-fill-mode:both; animation-name:object; } |
1 2 3 4 5 |
@-webkit-keyframes object { 0% { opacity: 0; } 100% { opacity: 1; } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
.avion1{ position:absolute; width:164px; height:164px; margin-left:-400px; margin-top:-110px; top:75px; bottom:0px; left:1550px; z-index:4; -moz-animation:translate 5s linear infinite; -webkit-animation:translate 5s linear infinite; background-image: url('/avion_1.png'); background-repeat: no-repeat; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
.avion2{ position:absolute; width:256px; height:256px; margin-left:-400px; margin-top:-100px; top:124px; bottom:0px; left:1100px; z-index:5; -moz-animation:translate 5s linear infinite; -webkit-animation:translate 5s linear infinite; background-image: url('/avion_2.png'); } |