← back to Simple Spinnercompare with ground truth →
model output
Qwen3-VL-8B-Instruct
Simple Spinner
A 0.78T 0.31
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 Brackets Animation</title>
7 <style>
8 body {
9 background-color: #008080;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .bracket {
17 color: white;
18 font-size: 40px;
19 animation: rotate 1.5s ease-in-out infinite alternate;
20 }
21 @keyframes rotate {
22 0% {
23 transform: rotate(0deg);
24 }
25 100% {
26 transform: rotate(360deg);
27 }
28 }
29 </style>
30</head>
31<body>
32 <div class="bracket">()</div>
33</body>
34</html>