forked from rtuin/webpresent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (64 loc) · 1.97 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Presentation</title>
<link rel="stylesheet" href="css/default.css" type="text/css">
<script src="js/jquery-1.6.2.min.js"></script>
</head>
<body>
<!-- Put your slides here as sections -->
<section>
<div class="allcenter">
<h1>Webpresent!</h1>
<h2>A presentation template</h2>
</div>
</section>
<section>
<h1>Webpresent slide template</h1>
<p>With this fully-customizable template you can:</p>
<ul>
<li class="item">Make a presentation using web standards</li>
<li class="item">Easily customize your presentation's look using (S)CSS</li>
<li class="item">Bring dynamic content into your presentation
<ul class="item">
<li>Because it's the web, you know ;-)</li>
</ul>
</li>
</ul>
</section>
<section>
<h1>Default transition types</h1>
<p>Webpresent includes different transitions:</p>
<ul>
<li class="item">Fade (default)</li>
<li class="item fadeleft">Fade in from the left</li>
<li class="item faderight">Fade in from the right</li>
<li class="item fadebottom">Fade in from the bottom</li>
<li class="item fadetop">Fade in from the top</li>
<li class="item notrans">No transition at all</li>
<li class="item custom">Your custom transition
<ul>
<li class="item">All using CSS</li>
</ul>
</li>
</ul>
</section>
<section>
<h1>Slide 3</h1>
</section>
<section>
<h1>Slide 4</h1>
</section>
<section>
<h1>Slide 5</h1>
</section>
<section>
<h1>Slide 6</h1>
</section>
<section>
<h1>Slide 7</h1>
</section>
<script src="js/webpresent.js"></script>
</body>
</html>