animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to Tiny Single Element Loading Animations

model output

Qwen3-VL-8B-Instruct

Tiny Single Element Loading Animations

A 0.86T 0.27
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-color: white;
16        }
17        .circle {
18            width: 50px;
19            height: 50px;
20            border: 2px solid #000;
21            border-radius: 50%;
22            animation: pulse 2s ease-in-out infinite alternate;
23            position: relative;
24        }
25        @keyframes pulse {
26            0% {
27                transform: scale(1);
28            }
29            100% {
30                transform: scale(1.2);
31            }
32        }
33    </style>
34</head>
35<body>
36    <div class="circle"></div>
37</body>
38</html>