- index.html
- style.css
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>@keyframes: storyboard</title>
<meta charset="utf-8">
<link rel="stylesheet" href="epoch1.css">
<link rel="stylesheet" href="style.css">
</head>
<body class="ancient">
<div class="stone">
<div class="barrow-wheel"></div>
</div>
</body>
</html>
CSS
.barrow-wheel {
animation-name: rotate;
animation-duration: 2s;
}
@keyframes rotate {
50% {
}
100% {
}
}
You’ve gone to a different page
Goalscompleted
0
- For the
50%
frame, add the rotation transformationrotate(90deg)
, for the100%
frame, add rotation by360°
; - Change the rotation value of the
50%
frame to-90°
.
Comments