animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to CSS Spinners

model output

Qwen3-VL-8B-Instruct

CSS Spinners

A 0.78T 0.29
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    margin: 0;
10    padding: 0;
11    display: flex;
12    justify-content: center;
13    align-items: center;
14    height: 100vh;
15    background: linear-gradient(to bottom, #87CEEB, white);
16  }
17  .circle {
18    width: 50px;
19    height: 50px;
20    border: 2px solid #3498db;
21    border-radius: 50%;
22    animation: rotate 1.5s ease-in-out infinite;
23    position: relative;
24  }
25  @keyframes rotate {
26    0% {
27      transform: rotate(0deg);
28    }
29    100% {
30      transform: rotate(360deg);
31    }
32  }
33</style>
34</head>
35<body>
36  <div class="circle"></div>
37</body>
38</html>