← back to Spinners using Font Iconscompare with ground truth →
model output
Qwen3-VL-8B-Instruct
Spinners using Font Icons
A 0.60T 0.22
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>Circle Animation</title>
7<style>
8 body {
9 background-color: #000;
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 white;
20 border-radius: 50%;
21 position: relative;
22 animation: pulse 1.5s ease-in-out infinite alternate;
23 }
24 @keyframes pulse {
25 0% {
26 transform: scale(1);
27 box-shadow: 0 0 10px white;
28 }
29 100% {
30 transform: scale(1.2);
31 box-shadow: 0 0 20px white, 0 0 30px #fff, 0 0 40px #fff;
32 }
33 }
34</style>
35</head>
36<body>
37 <div class="circle"></div>
38</body>
39</html>