Anda di halaman 1dari 1

hace click en esta pagina

http://www.w3schools.com/css/tryit.asp?filename=trycss3_transform1
borra todo y
pega lo de abajo en lugar de lo que esta escrito
<!DOCTYPE html>
<html>
<head>
<img id="rueda" src="http://img1.wikia.nocookie.net/__cb20130507175502/fakemon/e
s/images/e/e0/Ruleta.png" />
<style type="text/css">
#rueda{
transition: 2.5s ease;
-moz-transition: 2.5s ease; /* Firefox */
-webkit-transition: 2.5s ease; /* Chrome - Safari */
-o-transition: 2.5s ease; /* Opera */
}

#rueda:hover{
transform : rotate(360deg);
-moz-transform : rotate(360deg); /* Firefox */
-webkit-transform : rotate(360deg); /* Chrome - Safari */
-o-transform : rotate(360deg); /* Opera */
}
</style>
</head>
<body>
<div>Hello</div>
</body>
</html>

Anda mungkin juga menyukai