Last active 1741293199

Bouncing DVD Video logo with variable speed & color change

Revision 9fe52dcf899aaaf4ad1b5df2b5f9783d90ac61b1

index.html Raw
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>DVD Video</title>
7 <style>
8 body {
9 margin: 0;
10 padding: 0;
11 background-color: #000;
12 overflow: hidden;
13 width: 100vw;
14 height: 100vh;
15 display: flex;
16 justify-content: center;
17 align-items: center;
18 }
19
20 #screen {
21 width: 100%;
22 height: 100%;
23 position: relative;
24 }
25
26 #dvd-logo {
27 position: absolute;
28 width: 187.75px;
29 height: 84.5px;
30 display: flex;
31 justify-content: center;
32 align-items: center;
33 user-select: none;
34 }
35 </style>
36</head>
37<body>
38 <div id="screen">
39 <div id="dvd-logo">
40 <svg width="187.5" height="84.5" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
41 <g class="layer">
42 <g id="svg_5">
43 <path d="m128.98,10.18l18.19,0s22.01,-1.13 21.45,10.16c-0.87,17.47 -27.65,16.23 -27.65,16.23l5.22,-22.72l-18.2,0l-7.62,32.87l18.06,0s18.04,0.81 32.87,-6.35c15.8,-7.61 15.94,-21.02 15.94,-21.02s0.57,-8.46 -7.76,-13.4c-9.28,-5.51 -21.44,-5.93 -21.44,-5.93l-39.79,0l-23.56,30.62l-9.88,-30.62l-68.56,0l-2.54,10.16l18.2,0s22.01,-1.13 21.44,10.16c-0.87,17.47 -27.65,16.23 -27.65,16.23l5.22,-22.72l-18.2,0l-7.62,32.87l18.06,0s18.04,0.81 32.88,-6.35c15.8,-7.61 15.94,-21.02 15.94,-21.02s-0.21,-3.85 -0.71,-5.5c-0.42,-1.41 -0.99,-3.67 -0.99,-3.67l0.85,0l16.79,47.12l41.06,-47.12zm-128.82,59.82c0,-7.01 39.55,-12.7 88.32,-12.7c48.78,0 88.32,5.69 88.32,12.7s-39.54,12.7 -88.32,12.7c-48.77,0 -88.32,-5.69 -88.32,-12.7zm167.69,9.8l-3.63,0l0,0.61l1.44,0l0,3.98l0.76,0l0,-3.98l1.43,0l0,-0.61l0,0zm5.99,0l-1.16,0l-1.35,3.49l-1.37,-3.49l-1.17,0l0,4.59l0.76,0l0,-3.83l0.02,0l1.51,3.83l0.47,0l1.51,-3.83l0.02,0l0,3.83l0.76,0l0,-4.59z" id="svg_3"/>
44 <path id="text" fill="#000" d="m39.44,63.76l-5.22,0l7.76,13.18l3.73,0l7.88,-13.18l-5.21,0l-4.49,8.01l-4.45,-8.01zm22.4,13.18l4.8,0l0,-13.18l-4.8,0l0,13.18zm14.98,0l6.81,0c5.11,0 9.37,-2.88 9.37,-6.59c0,-3.71 -4.23,-6.6 -9.37,-6.6l-6.81,0l0,13.19zm4.8,-10.28l1.13,0c3.08,0 5.26,1.33 5.26,3.69c0,2.57 -2.45,3.69 -5.31,3.69l-1.08,0l0,-7.38zm31.17,0l0,-2.9l-10.51,0l0,13.18l10.51,0l0,-2.9l-5.71,0l0,-2.27l5.41,0l0,-2.91l-5.41,0l0,-2.2l5.71,0zm19.28,-3.34c-5.31,0 -10.21,2.8 -10.21,6.78c0,4.27 4.29,7.28 10.21,7.28c5.93,0 10.21,-3.01 10.21,-7.28c0,-3.98 -4.89,-6.78 -10.21,-6.78zm0,3.32c2.86,0 5.22,1.66 5.22,3.48c0,2.28 -2.36,3.94 -5.22,3.94c-2.86,0 -5.21,-1.66 -5.21,-3.94c0,-1.82 2.35,-3.48 5.21,-3.48z" fill="#fff" id="svg_4"/>
45 </g>
46 </g>
47 </svg>
48 </div>
49 </div>
50
51 <script>
52 const screen = document.getElementById('screen');
53 const logo = document.getElementById('dvd-logo');
54 const logoPaths = document.querySelectorAll('path');
55
56 let x = Math.random() * (screen.clientWidth - logo.clientWidth);
57 let y = Math.random() * (screen.clientHeight - logo.clientHeight);
58
59 const speeds = [
60 { dx: 1.2, dy: 1.2 },
61 { dx: 2.0, dy: 2.0 },
62 { dx: 2.2, dy: 2.2 }
63 ];
64
65 let currentSpeedIndex = 1;
66 let dx = speeds[currentSpeedIndex].dx / 2;
67 let dy = speeds[currentSpeedIndex].dy / 2;
68
69 function changeColor() {
70 const r = Math.floor(Math.random() * 156) + 100;
71 const g = Math.floor(Math.random() * 156) + 100;
72 const b = Math.floor(Math.random() * 156) + 100;
73 const color = `rgb(${r}, ${g}, ${b})`;
74
75 logoPaths.forEach(path => {
76 if (path.id !== 'text') {
77 path.setAttribute('fill', color);
78 }
79 });
80 }
81
82 function changeSpeed() {
83 let newSpeedIndex;
84 do {
85 newSpeedIndex = Math.floor(Math.random() * speeds.length);
86 } while (newSpeedIndex === currentSpeedIndex);
87
88 currentSpeedIndex = newSpeedIndex;
89
90 const dirX = dx > 0 ? 1 : -1;
91 const dirY = dy > 0 ? 1 : -1;
92
93 dx = speeds[currentSpeedIndex].dx * dirX;
94 dy = speeds[currentSpeedIndex].dy * dirY;
95 }
96
97 changeColor();
98
99 let bounceCount = 0;
100
101 function animate() {
102 x += dx;
103 y += dy;
104
105 let collision = false;
106
107 if (x <= 0 || x + logo.clientWidth >= screen.clientWidth) {
108 dx = -dx;
109 collision = true;
110 }
111
112 if (y <= 0 || y + logo.clientHeight >= screen.clientHeight) {
113 dy = -dy;
114 collision = true;
115 }
116
117 if (collision) {
118 changeColor();
119 bounceCount++;
120
121 if (bounceCount >= 3 + Math.floor(Math.random() * 3)) {
122 changeSpeed();
123 bounceCount = 0;
124 }
125 }
126
127 logo.style.left = x + 'px';
128 logo.style.top = y + 'px';
129
130 requestAnimationFrame(animate);
131 }
132
133 animate();
134
135 window.addEventListener('resize', function() {
136 if (x + logo.clientWidth > screen.clientWidth) {
137 x = screen.clientWidth - logo.clientWidth;
138 }
139 if (y + logo.clientHeight > screen.clientHeight) {
140 y = screen.clientHeight - logo.clientHeight;
141 }
142 });
143 </script>
144</body>
145</html>
146