Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 75370b5

Browse files
committed
GH-202: Add 1NF transitions
1 parent 8b112f6 commit 75370b5

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

src/pres/normalization/index.html

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -250,24 +250,24 @@ <h2>Deletion anomalies</h2>
250250
<div class="step requirements" id="requirements--1nf"
251251
data-rel-position="absolute"
252252
data-x="0"
253-
data-y="1000"
253+
data-y="1500"
254254
data-rotate-z="0">
255-
<h2>First normal form</h2>
256-
<section>
255+
<h2 class="fade-in">First normal form</h2>
256+
<section class="fly-in">
257257
<h3>Requirements</h3>
258258
<ul>
259259
<li>
260-
Row order should not be used to convey information
260+
Row order should not be used to convey information.
261261
</li>
262262
<li>
263-
Data types should not be mixed within the same column<br>
264-
<small class="fly-in">(and the RDBMS won't let you do it anyway)</small>
263+
Data types should not be mixed within the same column.<br>
264+
<small>(and the RDBMS won't let you do it anyway)</small>
265265
</li>
266266
<li>
267-
Tables should have their primary keys
267+
Tables should have their primary keys.
268268
</li>
269269
<li>
270-
Repeating groups should be eliminated
270+
Repeating groups should be eliminated.
271271
</li>
272272
</ul>
273273
</section>
@@ -277,7 +277,7 @@ <h3>Requirements</h3>
277277
data-rel-position="relative"
278278
data-rel-x="-1000"
279279
data-rel-y="1500">
280-
<section>
280+
<section class="fade-in fade-out">
281281
<table class="db-table" aria-label="data">
282282
<caption>Player Level</caption>
283283
<thead>
@@ -308,7 +308,7 @@ <h3>Requirements</h3>
308308
data-rel-position="relative"
309309
data-rel-x="0"
310310
data-rel-y="850">
311-
<section>
311+
<section class="fade-in fade-out">
312312
<table class="db-table" aria-label="data">
313313
<caption>Player Level</caption>
314314
<thead>
@@ -340,7 +340,7 @@ <h3>Requirements</h3>
340340
data-rel-position="relative"
341341
data-rel-x="2000"
342342
data-rel-y="-850">
343-
<section>
343+
<section class="fade-in fade-out">
344344
<table class="db-table" aria-label="data">
345345
<caption>Player Inventory</caption>
346346
<thead>
@@ -371,7 +371,7 @@ <h3>Requirements</h3>
371371
data-rel-position="relative"
372372
data-rel-x="0"
373373
data-rel-y="850">
374-
<section>
374+
<section class="fade-in fade-out">
375375
<table class="db-table" aria-label="data">
376376
<caption>Player Inventory</caption>
377377
<thead>
@@ -385,27 +385,27 @@ <h3>Requirements</h3>
385385
<tr id="no-repeating-groups--1nf__prombery87-sword">
386386
<td>prombery87</td>
387387
<td>sword</td>
388-
<td>1</td>
388+
<td class="text-end">1</td>
389389
</tr>
390390
<tr id="no-repeating-groups--1nf__prombery87-ring">
391391
<td>prombery87</td>
392392
<td>ring</td>
393-
<td>4</td>
393+
<td class="text-end">4</td>
394394
</tr>
395395
<tr id="no-repeating-groups--1nf__wheed1997-copper-coin">
396396
<td>wheed1997</td>
397397
<td>copper coin</td>
398-
<td>18</td>
398+
<td class="text-end">18</td>
399399
</tr>
400400
<tr id="no-repeating-groups--1nf__acen1999-hat">
401401
<td>acen1999</td>
402402
<td>wizard hat</td>
403-
<td>1</td>
403+
<td class="text-end">1</td>
404404
</tr>
405405
<tr id="no-repeating-groups--1nf__acen1999-robe">
406406
<td>acen1999</td>
407407
<td>robe</td>
408-
<td>1</td>
408+
<td class="text-end">1</td>
409409
</tr>
410410
</tbody>
411411
</table>
@@ -417,7 +417,7 @@ <h3>Requirements</h3>
417417
data-rel-position="relative"
418418
data-rel-x="-1000"
419419
data-rel-y="-1600">
420-
<section>
420+
<section class="fade-in">
421421
<table class="db-table" aria-label="data">
422422
<caption>Player Inventory</caption>
423423
<thead>
@@ -461,8 +461,8 @@ <h3>Requirements</h3>
461461
<div class="step overview" id="overview--1nf"
462462
data-rel-position="relative"
463463
data-rel-x="0"
464-
data-rel-y="450"
465-
data-scale="3">
464+
data-rel-y="-500"
465+
data-scale="2">
466466
</div>
467467

468468
<!-- 2NF -->

0 commit comments

Comments
 (0)