animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to Loaders (WIP)

model output

Qwen3-VL-8B-Instruct

Loaders (WIP)

A 0.73T 0.19
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>Rotating Circle Animation</title>
7<style>
8  body {
9    background-color: #e74c3c;
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: 4px solid white;
20    border-radius: 50%;
21    position: relative;
22    animation: rotate 2s linear infinite;
23  }
24  .circle::before {
25    content: "";
26    position: absolute;
27    top: 50%;
28    left: 50%;
29    transform: translate(-50%, -50%);
30    width: 20px;
31    height: 20px;
32    background-color: white;
33    border-radius: 50%;
34  }
35  .circle::after {
36    content: "";
37    position: absolute;
38    top: 50%;
39    left: 50%;
40    transform: translate(-50%, -50%);
41    width: 10px;
42    height: 10px;
43    background-color: #e74c3c;
44    border-radius: 50%;
45  }
46  @keyframes rotate {
47    0% {
48      transform: rotate(0deg);
49    }
50    100% {
51      transform: rotate(360deg);
52    }
53  }
54</style>
55</head>
56<body>
57  <div class="circle"></div>
58</body>
59</html>