Skip to content

Instantly share code, notes, and snippets.

View vicegd's full-sized avatar

Vicente García Díaz vicegd

View GitHub Profile
@vicegd
vicegd / index.html
Last active February 6, 2016 16:25
Reveal.JS - Unordered list
<section>
<h2>Listas desordenadas</h2>
<ul>
<li>Gijón</li>
<li>Oviedo</li>
<li>Madrid</li>
<li>Avilés</li>
</ul>
</section>
@vicegd
vicegd / index.html
Last active February 6, 2016 16:24
Reveal.JS - Ordered list
<section>
<h2>Listas ordenadas</h2>
<ol>
<li>Harina</li>
<li>Canela</li>
<li>Levadura</li>
<li>Huevos</li>
</ol>
</section>
@vicegd
vicegd / index.html
Last active February 7, 2016 10:53
Reveal.JS - Source code
<section>
<h2>Inserción de código fuente</h2>
<pre><code class="hljs" data-trim contenteditable>
public void sort(int[] elements) {
for (int i = 1; i < elements.length; i++) {
for (int j = elements.length - 1; j >= i; j--) {
if (elements[j-1] > elements[j])
Util.interchange(elements, j-1, j);
}
}
@vicegd
vicegd / index.html
Last active February 6, 2016 16:34
Reveal.JS - Presenter view
<section>
<h2>Vista de Presentación</h2>
<p>Pulsa <strong>S</strong> para acceder a la vista de Presentación</p>
<aside class="notes">
Se pueden escribir notas ocultas para todo el mundo excepto para el presentador,
al estilo de Power Point cuando trabajamos con dos monitores
</aside>
</section>
@vicegd
vicegd / index.html
Last active February 6, 2016 16:49
Reveal.JS - Nested slides
<section>
<section>
<h2>Diapositivas anidadas</h2>
<p>Además de la típica secuenciación izquierda-derecha, también podemos trabajar en el sentido vertical arriba-abajo</p>
<p>Pulsa <strong>Espacio</strong> para moverte por todas las diapositivas anidadas</p>
<p>También puedes pulsar las flechas <strong>ARRIBA</strong> y <strong>ABAJO</strong> para desplazarte por ellas</p>
<a href="#" class="navigate-down">
<img width="178" height="238" data-src="https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png" alt="Down arrow">
</a>
</section>
@vicegd
vicegd / index.html
Last active February 7, 2016 10:52
Reveal.JS - Quotes
<section>
<h2>Citas</h2>
<p>El objetivo de la WWF es:
<q cite="http://www.wwf.org">Build a future where people live in harmony with nature</q>
- Ojalá tengan éxito</p>
<blockquote cite="http://www.worldwildlife.org/who/index.html">
For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization,
WWF works in 100 countries.
</blockquote>
</section>
@vicegd
vicegd / index.html
Created February 6, 2016 17:10
Reveal.JS - Links
<section>
<h2>Cualquier código HTML/JavaScript/CSS es posible</h2>
<p>Por ejemplo, enlaces entre diapositivas como <a href="#/1">este</a></p>
</section>
@vicegd
vicegd / index.html
Last active February 8, 2016 14:41
Reveal.JS - Custom ID
<section id="custom_id">
<h2>Identificación del nombre de la diapositiva</h2>
<p>Por defecto, cada diapositiva se identifica a través de la URL con número correspondiente a su posición</p>
<p>Sin embargo, esta diapositiva tiene como identificador <code>custom_id</code></p>
</section>
@vicegd
vicegd / index.html
Last active August 11, 2022 06:51
Reveal.JS - Tables
<section>
<h2>Tablas con información</h2>
<table>
<thead><tr>
<th>Ciudad</th>
<th>Año de fundación</th>
<th>Población</th>
</tr></thead>
<tbody><tr>
<td>Gijón</td>
@vicegd
vicegd / index.html
Last active February 7, 2016 12:03
Reveal.JS - Markdown
<section data-markdown>
<script type="text/template">
## Soporte para Markdown
Es posible crear contenido utilizando *Markdown*
Es utilizado en plataformas como GitHub, reddit, Diaspora, Stack Echange, OpenStreetMap o SourceForge
Más información [aquí](http://daringfireball.net/projects/markdown/)