← back to Loaders (WIP)compare with ground truth →
model output
Qwen3-VL-8B-Instruct
Loaders (WIP)
A 0.80T 0.29
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 background-color: #e64a19;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .loader {
17 width: 50px;
18 height: 50px;
19 position: relative;
20 }
21 .loader::before,
22 .loader::after {
23 content: '';
24 position: absolute;
25 top: 0;
26 left: 0;
27 width: 50px;
28 height: 50px;
29 border: 2px solid transparent;
30 border-top-color: white;
31 border-radius: 50%;
32 animation: spin 1s linear infinite;
33 }
34 .loader::before {
35 animation-delay: -0.5s;
36 }
37 @keyframes spin {
38 0% {
39 transform: rotate(0deg);
40 }
41 100% {
42 transform: rotate(360deg);
43 }
44 }
45</style>
46</head>
47<body>
48 <div class="loader"></div>
49</body>
50</html>