Mit der CSS3 Property transform (translate & rotate) und transition kann man ganz einfach simple Animationen erstellen. Derzeit funktioniert dies allerdings nur in der aktuellen Safari und Chrome Version. Hier nun ein ganz einfaches Beispiel einer kleinen Auto Animation…2 Bilder und ein bisschen CSS3 und schon fährt das Auto.

Example (Safari & Chrome only)

Check out the CSS3 Car Animation

HTML Code

<a href=""><strong>HOVER ME TO START THE CAR</strong>
<img src="car.jpg" width="300" height="164" /> //car image
<img src="gear.png" width="60" height="60" /> //gear image
<img src="gear.png" width="60" height="60" /> //gear image
</a>

Important CSS Parts

/* Define Animation Speed */
img{
-webkit-transition: all 3.1s ease-in-out;
-moz-transition: all 3.1s ease-in-out; 
transition: all 3.1s ease-in-out;
}

/* Car image Animation */
a:hover img:nth-of-type(1) {
-webkit-transform: translate(700px,0px) rotate(0deg); 
-moz-transform: translate(700px,0px) rotate(0deg); 
transform: translate(700px,0px) rotate(0deg);
}

/* Gear images Animation */
a:hover img {
-webkit-transform: translate(700px,0px) rotate(1000deg); 
-moz-transform: translate(700px,0px) rotate(1000deg); 
transform: translate(700px,0px) rotate(1000deg);
}

Sag mir was du denkst

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>