← back to Animated Concepts #3compare with ground truth →
model output
Qwen3-VL-8B-Instruct
Animated Concepts #3
A 0.39T 0.20
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: #121212;
10 display: flex;
11 justify-content: center;
12 align-items: center;
13 height: 100vh;
14 margin: 0;
15 }
16 .spinner {
17 width: 50px;
18 height: 50px;
19 position: relative;
20 }
21 .spinner::before,
22 .spinner::after {
23 content: '';
24 position: absolute;
25 top: 0;
26 left: 0;
27 width: 100%;
28 height: 100%;
29 border-radius: 50%;
30 background: linear-gradient(45deg, #e67e22, #c0392b);
31 animation: spin 1.5s ease-in-out infinite;
32 }
33 .spinner::before {
34 animation-delay: -0.5s;
35 animation-duration: 1.5s;
36 animation-timing-function: ease-in-out;
37 animation-iteration-count: infinite;
38 }
39 .spinner::after {
40 animation-delay: 0.5s;
41 animation-duration: 1.5s;
42 animation-timing-function: ease-in-out;
43 animation-iteration-count: infinite;
44 }
45 @keyframes spin {
46 0%, 100% {
47 transform: rotate(0deg);
48 }
49 50% {
50 transform: rotate(180deg);
51 }
52 }
53</style>
54</head>
55<body>
56 <div class="spinner"></div>
57</body>
58</html>