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.77T 0.23
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>Simple Animation</title>
7<style>
8  body {
9    background-color: #7a6e6e;
10    display: flex;
11    justify-content: center;
12    align-items: center;
13    height: 100vh;
14    margin: 0;
15  }
16  .square {
17    width: 40px;
18    height: 40px;
19    background-color: #b3c78e;
20    border-radius: 4px;
21    transition: transform 0.5s ease-in-out;
22  }
23</style>
24</head>
25<body>
26  <div class="square" id="square"></div>
27
28  <script>
29    const square = document.getElementById('square');
30    setTimeout(() => {
31      square.style.transform = 'scale(1.2) rotate(15deg)';
32    }, 300);
33  </script>
34</body>
35</html>