← back to Single Element Spinnercompare with ground truth →
model output
Claude Sonnet 4.6
Single Element Spinner
A 0.92T 0.32
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>Loading Animation</title>
7<style>
8 * {
9 margin: 0;
10 padding: 0;
11 box-sizing: border-box;
12 }
13
14 body {
15 background-color: #0a0a0a;
16 width: 100vw;
17 height: 100vh;
18 overflow: hidden;
19 }
20
21 .spinner {
22 position: absolute;
23 left: 213px;
24 top: 120px;
25 width: 28px;
26 height: 28px;
27 border-radius: 50%;
28 border: 2px solid transparent;
29 border-top-color: #00bcd4;
30 border-right-color: #00bcd4;
31 border-bottom-color: transparent;
32 border-left-color: #00bcd4;
33 animation: spin 1s linear infinite;
34 }
35
36 @keyframes spin {
37 0% {
38 transform: rotate(0deg);
39 }
40 100% {
41 transform: rotate(360deg);
42 }
43 }
44</style>
45</head>
46<body>
47 <div class="spinner"></div>
48</body>
49</html>