← back to Wavy Loading Animationscompare with ground truth →
model output
Qwen3-VL-8B-Instruct
Wavy Loading Animations
A 0.65T 0.26
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>Spinning Circle Animation</title>
7<style>
8 body {
9 background-color: #f5f5f5;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .spinner {
17 width: 50px;
18 height: 50px;
19 border: 5px solid #e0e0e0;
20 border-top: 5px solid #333;
21 border-radius: 50%;
22 animation: spin 1s linear infinite;
23 transform: translateZ(0);
24 }
25 @keyframes spin {
26 0% {
27 transform: rotate(0deg);
28 }
29 100% {
30 transform: rotate(360deg);
31 }
32 }
33</style>
34</head>
35<body>
36 <div class="spinner"></div>
37</body>
38</html>