← back to Animated Concepts #3compare with ground truth →
model output
Qwen3-VL-8B-Instruct
Animated Concepts #3
A 0.82T 0.21
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <meta charset="UTF-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Rotating Circle Animation</title>
7 <style>
8 body {
9 background-color: #121212;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .circle {
17 width: 50px;
18 height: 50px;
19 border: 2px solid #ff6b6b;
20 border-radius: 50%;
21 position: relative;
22 animation: rotate 2s linear infinite;
23 }
24 .inner-circle {
25 width: 20px;
26 height: 20px;
27 border: 1px solid #ff6b6b;
28 border-radius: 50%;
29 position: absolute;
30 top: 50%;
31 left: 50%;
32 transform: translate(-50%, -50%);
33 animation: innerRotate 1.5s ease-in-out infinite;
34 }
35 @keyframes rotate {
36 0% {
37 transform: rotate(0deg);
38 }
39 100% {
40 transform: rotate(360deg);
41 }
42 }
43 @keyframes innerRotate {
44 0% {
45 transform: translate(-50%, -50%) rotate(0deg);
46 }
47 100% {
48 transform: translate(-50%, -50%) rotate(360deg);
49 }
50 }
51 </style>
52</head>
53<body>
54 <div class="circle">
55 <div class="inner-circle"></div>
56 </div>
57</body>
58</html>