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

model output

LLaMA 4 Scout

Tiny Single Element Loading Animations

A 0.82T 0.13
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</title>
7    <style>
8        .circle {
9            position: absolute;
10            top: 10px;
11            left: 10px;
12            width: 20px;
13            height: 20px;
14            border-radius: 50%;
15            border: 1px solid black;
16        }
17    </style>
18</head>
19<body>
20    <div class="circle"></div>
21</body>
22</html>