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.54T 0.26
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>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: #d33;
16    overflow: hidden;
17  }
18  .circle {
19    width: 40px;
20    height: 40px;
21    border-radius: 50%;
22    background: #fff;
23    border: 2px solid #333;
24    animation: pulse 1.5s ease-in-out infinite alternate;
25    position: relative;
26  }
27  @keyframes pulse {
28    0% {
29      transform: scale(1) rotate(0deg);
30    }
31    100% {
32      transform: scale(1.2) rotate(360deg);
33    }
34  }
35</style>
36</head>
37<body>
38  <div class="circle"></div>
39</body>
40</html>