← back to Such Spinners, Much Loadingcompare with ground truth →
model output
Qwen3-VL-8B-Instruct
Such Spinners, Much Loading
A 0.73T 0.23
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>Animation</title>
7<style>
8 body {
9 display: flex;
10 justify-content: center;
11 align-items: center;
12 height: 100vh;
13 margin: 0;
14 background: white;
15 }
16 .circle {
17 width: 20px;
18 height: 20px;
19 background: #333;
20 border-radius: 50%;
21 position: relative;
22 animation: pulse 1.5s ease-in-out;
23 }
24 .circle::before {
25 content: "";
26 position: absolute;
27 top: 50%;
28 left: 50%;
29 transform: translate(-50%, -50%);
30 width: 8px;
31 height: 8px;
32 background: white;
33 border-radius: 50%;
34 }
35 @keyframes pulse {
36 0%, 100% {
37 transform: scale(1);
38 }
39 50% {
40 transform: scale(1.2);
41 }
42 }
43</style>
44</head>
45<body>
46 <div class="circle"></div>
47</body>
48</html>