You need to sign in or sign up before continuing.
Commit a9d1dba4 authored by Laurent Heirendt's avatar Laurent Heirendt
Browse files

Merge branch 'develop' into 'master'

Regular merge of develop

See merge request R3/outreach/templates/presentation!6
parents 0045a871 957f45f4
......@@ -46,4 +46,8 @@ Create a JSON file with your slide(s) in `YYYY-MM-DD_presentationName/slides` an
For resuming your work on a presentation, you can run the same contribute command:</br>
```bash
$ ./contribute.sh -d YYYY-MM-DD -n presentationName
```
\ No newline at end of file
```
## Further information
More information is in the `docs` folder.
\ No newline at end of file
# Additional syntax and formatting
Special syntax (through HTML comments) is available for adding attributes to Markdown elements.
## Slide transition
**data-transition** attribute is used to change default slide transition.
* possible values of *data-transition* attribute: zoom, fade, convex, convex, slide, strike, linear + "-in" and "-out" optional suffixes
* possible values of *data-transition-speed*: fast, slow
* examples:
* Markdown
* fade-out
```
# My fade-in fade-out slide title
<!-- .slide: data-transition="fade" -->
```
* zoom-in fade-out
```
# My zoom-in fade-out slide title
<!-- .slide: data-transition="zoom-in fade-out" data-transition-speed="fast"-->
```
* HTML
* fade-in fade-out
```
<section data-transition="fade">
# My fade-in fade-out slide title
</section>
```
## New slide
* Markdown - three empty lines or separate .md file
* HTML syntax - \<section\> element
## Fragmentation
It is possible to adjust behavior of fragments of your slide, e.g. order in which the elements are shown can be defined by class *fragment* with optional attribute data-fragment-index:
* Markdown
```
* first element <!-- .element: class="fragment"-->
<!-- .element: class="fragment" data-fragment-index="3" -->
* third element
<!-- .element: class="fragment" data-fragment-index="2" -->
* second element
```
* HTML syntax
```
...
<div class="fragment" data-fragment-index="3">
third element
</div>
...
```
additional classes extending class fragment:
* special fragment entry: fade-in-then-semi-out, fade-in-then-out, semi-fade-out, zoom-in, fade-up, fade-left, ...
* highlighting: highlight-green, highlight-blue, highlight-red, highlight-current-red, ...
* hiding fragments: current-visible
* simple animation features: grow, shrink, strike
# External resources
For more tips on supported functionality visit official [reveal.js GitHub repository](https://github.com/hakimel/reveal.js/).
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment