animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to flat loading animate

model output

LLaMA 4 Scout

flat loading animate

A 0.59T 0.12
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>Red Dot</title>
7    <style>
8        body {
9            background-color: #fff;
10            display: flex;
11            justify-content: center;
12            align-items: center;
13            height: 100vh;
14            margin: 0;
15        }
16        .dot {
17            width: 10px;
18            height: 10px;
19            background-color: #ff0000;
20            border-radius: 50%;
21        }
22    </style>
23</head>
24<body>
25    <div class="dot"></div>
26</body>
27</html>