-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78b016d
commit 9177a89
Showing
5 changed files
with
132 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-model href="urn:jung:dita:rng:slide.rng" schematypens="http://relaxng.org/ns/structure/1.0"?> | ||
<?xml-model href="urn:jung:dita:rng:slide.rng" schematypens="http://purl.oclc.org/dsdl/schematron"?> | ||
<slide id="slide07"> | ||
<title>Stack</title> | ||
<body> | ||
<p>Stacks multiple elements on top of each other, for use with fragments.</p> | ||
<pre><codeblock outputclass="language-html" data-trim=" " data-line-numbers=" "><div class="r-stack"> | ||
<img class="fragment" width="450" height="350" src="..."/> | ||
<img class="fragment" width="350" height="450" src="..."/> | ||
<img class="fragment" width="400" height="400" src="..."/></codeblock></pre> | ||
</body> | ||
</slide> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<?xml-model href="urn:jung:dita:rng:slide.rng" schematypens="http://relaxng.org/ns/structure/1.0"?> | ||
<?xml-model href="urn:jung:dita:rng:slide.rng" schematypens="http://purl.oclc.org/dsdl/schematron"?> | ||
<slide id="slide08"> | ||
<title>Stack Example</title> | ||
<body> | ||
<div outputclass=" r-stack"> | ||
<p outputclass="fragment fade-in-then-out">One</p> | ||
<p outputclass="fragment fade-in-then-out">Two</p> | ||
<p outputclass="fragment fade-in-then-out">Three</p> | ||
<p outputclass="fragment fade-in-then-out">Four</p> | ||
</div> | ||
</body> | ||
</slide> |