My page code below does not work IE. What I might add.
Thank you.
Thank you.
Code:
<!DOCTYPE html>
<html lang="pt-br">
<head>
<title></title>
<meta charset="utf-8">
<style>
@-webkit-keyframes rodaroda {
0% {
-webkit-transform:rotate(0deg);
}
50% {
background:red;
-webkit-transform:rotate(180deg);
}
100% {
background:blue;
-webkit-transform:rotate(360deg);
}
}
@-moz-keyframes rodaroda {
0% {
-moz-transform:rotate(0deg);
}
50% {
background:red;
-moz-transform:rotate(180deg);
}
100% {
-moz-transform:rotate(360deg);
}
}
.giragira {
width:3px; /**aqui está 50px vou mudar para 10px**/
height:3px;/**aqui está 50px vou mudar para 10px**/
margin:15px 0 0 15px;
-webkit-animation: rodaroda 1s linear alternate 3;
-moz-animation: rodaroda 0.5s linear infinite;
-o-animation: rodaroda 0.5s linear infinite;
animation: rodaroda 0.5s linear infinite;
background-color: #66FF99; /**Aqui está black vou mudar para verde**/
}
</style>
</head>
<body>
<div class="giragira"></div>
</body>
</html>
Last edited by a moderator: