animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to Wavy Loading Animations

model output

Qwen3-VL-8B-Instruct

Wavy Loading Animations

A 0.45T 0.14
compare with ground truth →
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: #f5f5f5;
10    display: flex;
11    justify-content: center;
12    align-items: center;
13    height: 100vh;
14    margin: 0;
15  }
16  .spinner {
17    width: 40px;
18    height: 40px;
19    position: relative;
20  }
21  .spinner::before {
22    content: "";
23    position: absolute;
24    top: 0;
25    left: 0;
26    width: 100%;
27    height: 100%;
28    border: 2px solid #ccc;
29    border-top-color: transparent;
30    border-radius: 50%;
31    animation: spin 1s linear infinite;
32  }
33  .spinner::after {
34    content: "";
35    position: absolute;
36    top: 0;
37    left: 0;
38    width: 100%;
39    height: 100%;
40    border: 2px solid #ccc;
41    border-top-color: transparent;
42    border-radius: 50%;
43    animation: spin 1s linear infinite;
44    animation-delay: 0.5s;
45  }
46  @keyframes spin {
47    0% {
48      transform: rotate(0deg);
49    }
50    100% {
51      transform: rotate(360deg);
52    }
53  }
54</style>
55</head>
56<body>
57  <div class="spinner"></div>
58</body>
59</html>