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>Animation delay: animation-delay, step 2</h2>
5
</ul><h2>Animation delay: animation-delay, step 2</h2>
6
<p>Let’s prepare a second animation, for which we will set a delay value in the next step.</p>
6
<p>Let’s prepare a second animation, for which we will set a delay value in the next step.</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><!DOCTYPE html> <html lang="en"> <head> <title>Animation delay: animation-delay, step 2</title> <meta charset="utf-8"> <link rel="stylesheet" href="epoch2.css"> <link rel="stylesheet" href="style.css"> </head> <body class="mechanical"> <div class="alarm-clock"> <span class="bell"></span> <span class="arrow-small"></span> </div> </body> </html></p>
11
<p><!DOCTYPE html> <html lang="en"> <head> <title>Animation delay: animation-delay, step 2</title> <meta charset="utf-8"> <link rel="stylesheet" href="epoch2.css"> <link rel="stylesheet" href="style.css"> </head> <body class="mechanical"> <div class="alarm-clock"> <span class="bell"></span> <span class="arrow-small"></span> </div> </body> </html></p>
12
<p>CSS</p>
12
<p>CSS</p>
13
<p>@keyframes rotate { to { transform: rotate(360deg); } } .arrow-small { animation-name: rotate; animation-duration: 1s; }</p>
13
<p>@keyframes rotate { to { transform: rotate(360deg); } } .arrow-small { animation-name: rotate; animation-duration: 1s; }</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 ding containing the following keyframes: 33% with a translateX(-15px) transformation;66% with a translateX(15px) transformation.</li>
19
<ol><li>Create an animation ding containing the following keyframes: 33% with a translateX(-15px) transformation;66% with a translateX(15px) transformation.</li>
20
<li>Then assign this animation to the bell .bell with a duration of 1s.</li>
20
<li>Then assign this animation to the bell .bell with a duration of 1s.</li>
21
</ol>
21
</ol>