escuela.html 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <!doctype html>
  2. <!--
  3. Welcome to the light side of the source, young padawan.
  4. One step closer to learn something interesting you are...
  5. ____
  6. _.' : `._
  7. .-.'`. ; .'`.-.
  8. __ / : ___\ ; /___ ; \ __
  9. ,'_ ""=-.:__;".-.";: :".-.":__;.-="" _`,
  10. :' `.t""=-.. '<@.`;_ ',@:` ..-=""j.' `;
  11. `:-.._J '-.-'L__ `-.-' L_..-;'
  12. "-.__ ; .-" "-. : __.-"
  13. L ' /.======.\ ' J
  14. "-. "__" .-"
  15. __.l"-:_JL_;-";.__
  16. .-j/'.; ;"""" / .'\"-.
  17. .' /:`. "-.: .-" .'; `.
  18. .-" / ; "-. "-..-" .-" : "-.
  19. .+"-. : : "-.__.-" ;-._ \
  20. ; \ `.; ; : : "+. ;
  21. : ; ; ; : ; : \:
  22. ; : ; : ;: ; :
  23. : \ ; : ; : ; / ::
  24. ; ; : ; : ; : ;:
  25. : : ; : ; : : ; : ;
  26. ;\ : ; : ; ; ; ;
  27. : `."-; : ; : ; / ;
  28. ; -: ; : ; : .-" :
  29. :\ \ : ; : \.-" :
  30. ;`. \ ; : ;.'_..-= / ;
  31. : "-. "-: ; :/." .' :
  32. \ \ : ;/ __ :
  33. \ .-`.\ /t-"" ":-+. :
  34. `. .-" `l __/ /`. : ; ; \ ;
  35. \ .-" .-"-.-" .' .'j \ / ;/
  36. \ / .-" /. .'.' ;_:' ;
  37. :-""-.`./-.' / `.___.'
  38. \ `t ._ /
  39. "-.t-._:'
  40. -->
  41. <!--
  42. So you'd like to know how to use impress.js?
  43. You've made the first, very important step - you're reading the source code.
  44. And that's how impress.js presentations are built - with HTML and CSS code.
  45. Believe me, you need quite decent HTML and CSS skills to be able to use impress.js effectively.
  46. More importantly, you need to be a designer. There are no default styles or layouts for impress.js presentations.
  47. You need to design and build it by hand.
  48. So...
  49. Would you still like to know how to use impress.js?
  50. -->
  51. <html lang="en">
  52. <head>
  53. <meta charset="utf-8" />
  54. <meta name="viewport" content="width=1024" />
  55. <meta name="apple-mobile-web-app-capable" content="yes" />
  56. <title>e-Artes | presentation showcase based on mash-up wip to LaKurrealidad website | by fulcro arcadiano de resilencia ontologica @f_a_r_o_</title>
  57. <meta name="description" content="La Kurrealidad is a gnostic, popular, kwnoledge node inspired by many other antropic, filantropic and humanistic projects." />
  58. <meta name="author" content="eartesania" />
  59. <link href="http://fonts.googleapis.com/css?family=Open+Sans:regular,semibold,italic,italicsemibold|PT+Sans:400,700,400italic,700italic|PT+Serif:400,700,400italic,700italic" rel="stylesheet" />
  60. <!--
  61. Impress.js doesn't depend on any external stylesheets. It adds all of the styles it needs for the
  62. presentation to work.
  63. This style below contains styles only for demo presentation. Browse it to see how impress.js
  64. classes are used to style presentation steps, or how to apply fallback styles, but I don't want
  65. you to use them directly in your presentation.
  66. Be creative, build your own. We don't really want all impress.js presentations to look the same,
  67. do we?
  68. When creating your own presentation get rid of this file. Start from scratch, it's fun!
  69. -->
  70. <link href="css/impress-demo.css" rel="stylesheet" />
  71. <link rel="shortcut icon" href="favicon.png" />
  72. <link rel="apple-touch-icon" href="apple-touch-icon.png" />
  73. </head>
  74. <!--
  75. Body element is used by impress.js to set some useful class names, that will allow you to detect
  76. the support and state of the presentation in CSS or other scripts.
  77. First very useful class name is `impress-not-supported`. This class means, that browser doesn't
  78. support features required by impress.js, so you should apply some fallback styles in your CSS.
  79. It's not necessary to add it manually on this element. If the script detects that browser is not
  80. good enough it will add this class, but keeping it in HTML means that users without JavaScript
  81. will also get fallback styles.
  82. When impress.js script detects that browser supports all required features, this class name will
  83. be removed.
  84. The class name on body element also depends on currently active presentation step. More details about
  85. it can be found later, when `hint` element is being described.
  86. -->
  87. <body class="impress-not-supported">
  88. <!--
  89. For example this fallback message is only visible when there is `impress-not-supported` class on body.
  90. -->
  91. <div class="fallback-message">
  92. <p>Your browser <b>doesn't support the features required</b> by impress.js, so you are presented with a simplified version of this presentation.</p>
  93. <p>For the best experience please use the latest <b>Chrome</b>, <b>Safari</b> or <b>Firefox</b> browser.</p>
  94. </div>
  95. <!--
  96. Now that's the core element used by impress.js.
  97. That's the wrapper for your presentation steps. In this element all the impress.js magic happens.
  98. It doesn't have to be a `<div>`. Only `id` is important here as that's how the script find it.
  99. You probably won't need it now, but there are some configuration options that can be set on this element.
  100. To change the duration of the transition between slides use `data-transition-duration="2000"` giving it
  101. a number of ms. It defaults to 1000 (1s).
  102. You can also control the perspective with `data-perspective="500"` giving it a number of pixels.
  103. It defaults to 1000. You can set it to 0 if you don't want any 3D effects.
  104. If you are willing to change this value make sure you understand how CSS perspective works:
  105. https://developer.mozilla.org/en/CSS/perspective
  106. But as I said, you won't need it for now, so don't worry - there are some simple but interesting things
  107. right around the corner of this tag ;)
  108. -->
  109. <div id="impress">
  110. <!--
  111. Here is where interesting thing start to happen.
  112. Each step of the presentation should be an element inside the `#impress` with a class name
  113. of `step`. These step elements are positioned, rotated and scaled by impress.js, and
  114. the 'camera' shows them on each step of the presentation.
  115. Positioning information is passed through data attributes.
  116. In the example below we only specify x and y position of the step element with `data-x="-1000"`
  117. and `data-y="-1500"` attributes. This means that **the center** of the element (yes, the center)
  118. will be positioned in point x = -1000px and y = -1500px of the presentation 'canvas'.
  119. It will not be rotated or scaled.
  120. -->
  121. <div id="bored" class="step slide" data-x="-1000" data-y="-1500">
  122. <q>Edificio 1 <b>aula</b> tarima, escena</q>
  123. <img width="60%" src="img/Escuela.png">
  124. </div>
  125. <!--
  126. The `id` attribute of the step element is used to identify it in the URL, but it's optional.
  127. If it is not defined, it will get a default value of `step-N` where N is a number of slide.
  128. So in the example below it'll be `step-2`.
  129. The hash part of the url when this step is active will be `#/step-2`.
  130. You can also use `#step-2` in a link, to point directly to this particular step.
  131. Please note, that while `#/step-2` (with slash) would also work in a link it's not recommended.
  132. Using classic `id`-based links like `#step-2` makes these links usable also in fallback mode.
  133. -->
  134. <div class="step slide" data-x="0" data-y="-1500">
  135. <q>Plaza de los Acebuches <strong>Tartesos</strong></q>
  136. Go to <a href="http://aleph1888.github.io/ataraxia_archive/plugin_timeline/index.html">main timeline</a> to get full story on one shot.
  137. Go to <a href="index.html">root node showcase</a> to get just four words about where this hacklab stands aside.
  138. Go to <a href="archivo.html">archive</a> to get cool PDF, like e-zines and so on.
  139. Go to <a href="facultad.html">teachers room</a> on Facultad de Lididos&iacute;ntesis if you are serious, may be a bit too serious, why so serious?
  140. Go to <a href="http://aleph1888.github.io/ataraxia_archive/archive_music/Ataraxia_music_archive.htm">music room</a> to stay on audios and nice media.
  141. <q>2016 </q>
  142. </div>
  143. <div class="step slide" data-x="1000" data-y="-1500">
  144. <q>Opening only <strong>monday mornings</strong>, check timetable!</q>
  145. www.tic.ninja
  146. </div>
  147. <!--
  148. This is an example of step element being scaled.
  149. Again, we use a `data-` attribute, this time it's `data-scale="4"`, so it means that this
  150. element will be 4 times larger than the others.
  151. From presentation and transitions point of view it means, that it will have to be scaled
  152. down (4 times) to make it back to its correct size.
  153. -->
  154. <div id="title" class="step" data-x="0" data-y="0" data-scale="4">
  155. <img width="98%" src="hacklab/2016.png">
  156. </div>
  157. </div>
  158. <!--
  159. Hint is not related to impress.js in any way.
  160. But it can show you how to use impress.js features in creative way.
  161. When the presentation step is shown (selected) its element gets the class of "active" and the body element
  162. gets the class based on active step id `impress-on-ID` (where ID is the step's id)... It may not be
  163. so clear because of all these "ids" in previous sentence, so for example when the first step (the one with
  164. the id of `bored`) is active, body element gets a class of `impress-on-bored`.
  165. This class is used by this hint below. Check CSS file to see how it's shown with delayed CSS animation when
  166. the first step of presentation is visible for a couple of seconds.
  167. ...
  168. And when it comes to this piece of JavaScript below ... kids, don't do this at home ;)
  169. It's just a quick and dirty workaround to get different hint text for touch devices.
  170. In a real world it should be at least placed in separate JS file ... and the touch content should be
  171. probably just hidden somewhere in HTML - not hard-coded in the script.
  172. Just sayin' ;)
  173. -->
  174. <div class="hint">
  175. <p>Use a spacebar or arrow keys to navigate</p>
  176. </div>
  177. <script>
  178. if ("ontouchstart" in document.documentElement) {
  179. document.querySelector(".hint").innerHTML = "<p>Tap on the left or right to navigate</p>";
  180. }
  181. </script>
  182. <!--
  183. Last, but not least.
  184. To make all described above really work, you need to include impress.js in the page.
  185. I strongly encourage to minify it first.
  186. In here I just include full source of the script to make it more readable.
  187. You also need to call a `impress().init()` function to initialize impress.js presentation.
  188. And you should do it in the end of your document. Not only because it's a good practice, but also
  189. because it should be done when the whole document is ready.
  190. Of course you can wrap it in any kind of "DOM ready" event, but I was too lazy to do so ;)
  191. -->
  192. <script src="js/impress.js"></script>
  193. <script>impress().init();</script>
  194. <!--
  195. The `impress()` function also gives you access to the API that controls the presentation.
  196. Just store the result of the call:
  197. var api = impress();
  198. and you will get three functions you can call:
  199. `api.init()` - initializes the presentation,
  200. `api.next()` - moves to next step of the presentation,
  201. `api.prev()` - moves to previous step of the presentation,
  202. `api.goto( idx | id | element, [duration] )` - moves the presentation to the step given by its index number
  203. id or the DOM element; second parameter can be used to define duration of the transition in ms,
  204. but it's optional - if not provided default transition duration for the presentation will be used.
  205. You can also simply call `impress()` again to get the API, so `impress().next()` is also allowed.
  206. Don't worry, it wont initialize the presentation again.
  207. For some example uses of this API check the last part of the source of impress.js where the API
  208. is used in event handlers.
  209. -->
  210. </body>
  211. </html>
  212. <!--
  213. Now you know more or less everything you need to build your first impress.js presentation, but before
  214. you start...
  215. Oh, you've already cloned the code from GitHub?
  216. You have it open in text editor?
  217. Stop right there!
  218. That's not how you create awesome presentations. This is only a code. Implementation of the idea that
  219. first needs to grow in your mind.
  220. So if you want to build great presentation take a pencil and piece of paper. And turn off the computer.
  221. Sketch, draw and write. Brainstorm your ideas on a paper. Try to build a mind-map of what you'd like
  222. to present. It will get you closer and closer to the layout you'll build later with impress.js.
  223. Get back to the code only when you have your presentation ready on a paper. It doesn't make sense to do
  224. it earlier, because you'll only waste your time fighting with positioning of useless points.
  225. If you think I'm crazy, please put your hands on a book called "Presentation Zen". It's all about
  226. creating awesome and engaging presentations.
  227. Think about it. 'Cause impress.js may not help you, if you have nothing interesting to say.
  228. -->
  229. <!--
  230. Are you still reading this?
  231. For real?
  232. I'm impressed! Feel free to let me know that you got that far (I'm @bartaz on Twitter), 'cause I'd like
  233. to congratulate you personally :)
  234. But you don't have to do it now. Take my advice and take some time off. Make yourself a cup of coffee, tea,
  235. or anything you like to drink. And raise a glass for me ;)
  236. Cheers!
  237. -->