animation2code benchmark
For best compatibility, please view this dashboard in a Chrome browser.
← back to SVG Loading icons

model output

Qwen3-VL-8B-Instruct

SVG Loading icons

A 0.40T 0.00
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>Animation</title>
7<style>
8  body {
9    background-color: #222;
10    margin: 0;
11    padding: 0;
12    display: flex;
13    justify-content: center;
14    align-items: center;
15    height: 100vh;
16    overflow: hidden;
17  }
18  .dot {
19    width: 2px;
20    height: 2px;
21    background-color: orange;
22    display: inline-block;
23    margin: 0 1px;
24    animation: pulse 1.5s infinite;
25  }
26  @keyframes pulse {
27    0%, 100% {
28      transform: scale(1);
29    }
30    50% {
31      transform: scale(1.2);
32    }
33  }
34</style>
35</head>
36<body>
37  <div class="dot"></div>
38  <div class="dot"></div>
39  <div class="dot"></div>
40</body>
41</html>