Skip to content

Commit d1349c0

Browse files
committed
Reformat animations html and remove scratch nav.
1 parent eb45dae commit d1349c0

File tree

1 file changed

+18
-8
lines changed

1 file changed

+18
-8
lines changed

animation.html

Lines changed: 18 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,15 @@
1414
<body>
1515
<nav>
1616
<ul>
17-
<li><a href="html-css-cheat-sheet.html#html">HTML</a></li>
18-
<li><a href="html-css-cheat-sheet.html#css">CSS</a></li>
19-
<li><a href="animation.html#animation">Animation</a></li>
20-
<li><a href="scratch.html">Scratch</a></li>
17+
<li>
18+
<a href="html-css-cheat-sheet.html#html">HTML</a>
19+
</li>
20+
<li>
21+
<a href="html-css-cheat-sheet.html#css">CSS</a>
22+
</li>
23+
<li>
24+
<a href="animation.html#animation">Animation</a>
25+
</li>
2126
<li class="nav-right">HTML CSS Cheat Sheet</li>
2227
</ul>
2328
</nav>
@@ -38,7 +43,9 @@ <h2>Transition all properties</h2>
3843
</section>
3944
<section id="transition-css">
4045
<h2>Transitions</h2>
41-
<h3>Different states may be defined using pseudo-classes like <span class="code">:hover</span> or <span class="code">:active</span> or dynamically set using JavaScript.</h3>
46+
<h3>Different states may be defined using pseudo-classes like
47+
<span class="code">:hover</span> or
48+
<span class="code">:active</span> or dynamically set using JavaScript.</h3>
4249
<div class="snippet transition">
4350
<h2 class="code">transition-duration:</h2>
4451
<div class="codeblock">
@@ -290,8 +297,9 @@ <h2>Translation</h2>
290297
</section>
291298
<section id="animation-css">
292299
<h2>CSS animation</h2>
293-
<h3>See <a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animations">MDN on CSS animations</a>.
294-
Also check out <a href="https://greensock.com/">GreenSock</a>.</h3>
300+
<h3>See
301+
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Animations/Using_CSS_animations">MDN on CSS animations</a>. Also check out
302+
<a href="https://greensock.com/">GreenSock</a>.</h3>
295303
<div class="snippet animation">
296304
<h2 class="code">animation-duration:</h2>
297305
<div class="codeblock">
@@ -428,7 +436,9 @@ <h2 class="code">animation-timing-function:</h2>
428436
</div>
429437
<div class="snippet animation ex-animation-fill-mode">
430438
<h2 class="code">animation-fill-mode:</h2>
431-
<h3><span class="fillmode-initial">Initial state</span><span class="fillmode-delay">Delay state 1s</span>
439+
<h3>
440+
<span class="fillmode-initial">Initial state</span>
441+
<span class="fillmode-delay">Delay state 1s</span>
432442
<span class="fillmode-animate">Animate 1s</span>
433443
<span class="fillmode-end">End state</span>
434444
</h3>

0 commit comments

Comments
 (0)