HTML Diff
0 added 0 removed
Original 2026-01-01
Modified 2026-03-09
1 <p><b>Loading…</b>Everything will be ready in few seconds</p>
1 <p><b>Loading…</b>Everything will be ready in few seconds</p>
2 <ul><li>Theory</li>
2 <ul><li>Theory</li>
3 <li>Theory</li>
3 <li>Theory</li>
4 <li>Comments</li>
4 <li>Comments</li>
5 </ul><h2>Landing, step 3</h2>
5 </ul><h2>Landing, step 3</h2>
6 <p>Let’s get out onto the surface and raise the flag! Glory to the explorers of the Moon and CSS animations!</p>
6 <p>Let’s get out onto the surface and raise the flag! Glory to the explorers of the Moon and CSS animations!</p>
7 <h2>Comments</h2>
7 <h2>Comments</h2>
8 <ul><li>index.html</li>
8 <ul><li>index.html</li>
9 <li>style.css</li>
9 <li>style.css</li>
10 </ul><p>HTML</p>
10 </ul><p>HTML</p>
11 <p>&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;title&gt;Landing, step 3&lt;/title&gt; &lt;meta charset="utf-8"&gt; &lt;link rel="stylesheet" href="epoch5.css"&gt; &lt;link rel="stylesheet" href="style.css"&gt; &lt;/head&gt; &lt;body class="cosmic"&gt; &lt;div class="moon"&gt; &lt;span class="flag"&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="rocket arrival"&gt; &lt;span class="fuel"&gt;&lt;/span&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</p>
11 <p>&lt;!DOCTYPE html&gt; &lt;html lang="en"&gt; &lt;head&gt; &lt;title&gt;Landing, step 3&lt;/title&gt; &lt;meta charset="utf-8"&gt; &lt;link rel="stylesheet" href="epoch5.css"&gt; &lt;link rel="stylesheet" href="style.css"&gt; &lt;/head&gt; &lt;body class="cosmic"&gt; &lt;div class="moon"&gt; &lt;span class="flag"&gt;&lt;/span&gt; &lt;/div&gt; &lt;div class="rocket arrival"&gt; &lt;span class="fuel"&gt;&lt;/span&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt;</p>
12 <p>CSS</p>
12 <p>CSS</p>
13 <p>.rocket { animation-name: fly; animation-duration: 1.5s; animation-timing-function: ease-out; animation-fill-mode: forwards; } .fuel { animation-name: fire; animation-duration: 1s; animation-delay: 1s; animation-fill-mode: forwards; } @keyframes fly { to { transform: translate(240px, 260px) rotate(-30deg); } } @keyframes fire { to { opacity: 0; } }</p>
13 <p>.rocket { animation-name: fly; animation-duration: 1.5s; animation-timing-function: ease-out; animation-fill-mode: forwards; } .fuel { animation-name: fire; animation-duration: 1s; animation-delay: 1s; animation-fill-mode: forwards; } @keyframes fly { to { transform: translate(240px, 260px) rotate(-30deg); } } @keyframes fire { to { opacity: 0; } }</p>
14 <p>Thanks! We’ll fix everything at once!</p>
14 <p>Thanks! We’ll fix everything at once!</p>
15 <p>The code has changed, click “Refresh” or turn autorun on.</p>
15 <p>The code has changed, click “Refresh” or turn autorun on.</p>
16 <p>You’ve gone to a different page</p>
16 <p>You’ve gone to a different page</p>
17 <p>Click inside the mini-browser to shift the focus onto this window.</p>
17 <p>Click inside the mini-browser to shift the focus onto this window.</p>
18 <p>100%</p>
18 <p>100%</p>
19 <ol><li>Create an animation hoist, containing a frame to with a top: -25px property,</li>
19 <ol><li>Create an animation hoist, containing a frame to with a top: -25px property,</li>
20 <li>then assign this animation to the flag .flag: duration 1s, animation delay 2s,ease-in type, keep the state after animation.</li>
20 <li>then assign this animation to the flag .flag: duration 1s, animation delay 2s,ease-in type, keep the state after animation.</li>
21 </ol>
21 </ol>