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

model output

Qwen3-VL-8B-Instruct

Exploring Bourbon

A 0.88T 0.25
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>Pink Background with Rotating Circle</title>
7<style>
8  body {
9    margin: 0;
10    padding: 0;
11    background-color: #e6579e;
12    display: flex;
13    justify-content: center;
14    align-items: center;
15    height: 100vh;
16    overflow: hidden;
17  }
18  .circle {
19    width: 40px;
20    height: 40px;
21    background: white;
22    border-radius: 50%;
23    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
24    animation: rotate 2s linear infinite;
25  }
26  @keyframes rotate {
27    0% {
28      transform: rotate(0deg);
29    }
30    100% {
31      transform: rotate(360deg);
32    }
33  }
34</style>
35</head>
36<body>
37  <div class="circle"></div>
38</body>
39</html>