-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
100 lines (98 loc) · 3.16 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<title>Pecha Kucha !</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/pechakucha.css">
</head>
<body>
<main class="slides">
<article class="red blacktext">
<h1>Pecha Kucha !</h1>
</article>
<article class="orange">
<p class="">Normal</p>
</article>
<article class="red">
<p class="bigtext">Big</p>
</article>
<article class="graygreen">
<p class="hugetext">Huge</p>
</article>
<article class="pink">
<p class="smalltext">
A small-sized text paragraph, when there is a lot to say (but not too much because we’re not here to read a lot).
</p>
</article>
<article class="green">
<p>multiple<br>paragraphs</p>
<p>wrapped<br>together</p>
</article>
<article class="stone blacktext">
<p><a href="#">link!</a></p>
</article>
<article class="cover darkgray">
<!-- source files for local video should be mp4 or webm -->
<p><video src="media/sun.webm" loop></video></p>
<p><span>Here comes the sun</span></p>
</article>
<article class="powder">
<!--
en :
You can embed iframes (a web page, a youtube/vimeo) :
Enter as attribute "rel" of a <div class="embed"> the url of the embed code
(or the webpage url, but it doesn't always work)
fr :
Pour intégrer une iframe (une page d’un site, une video youtube ou vimeo)
Saisir comme attribut “rel” d’un <div class="embed"> l’url du code d’intégration
(ou de la page web ; mais ça ne fonctionne pas toujours)
-->
<div class="embed" rel="https://www.youtube.com/embed/deuhXlqHB9I"></div>
</article>
<article class="blue">
<!-- image sources can be local -->
<img src="media/sky.png">
</article>
<article class="paleblue">
<!-- image sources can be remote -->
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/1.jpg" alt="">
</article>
<article class="cover purple">
<!-- `cover` class makes the image cover the screen -->
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/2.jpg" alt="">
</article>
<article class="contain pink">
<!-- `contain` class makes the image be contained in the screen -->
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/3.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/4.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/5.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/6.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/7.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/8.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/9.jpg" alt="">
</article>
<article>
<img src="http://ateliers.esad-pyrenees.fr/_inc/img/750/10.jpg" alt="">
</article>
<article class="red">
<p>Conclusion !</p>
</article>
</main>
<!-- TIMER ! -->
<div id="bar"></div>
<script type="text/javascript" src='js/pechakucha.js'></script>
</body>
</html>