Compare commits
No commits in common. 'master' and 'gh-pages' have entirely different histories.
@ -1,5 +0,0 @@ |
|||
language: node_js |
|||
node_js: |
|||
- 0.8 |
|||
before_script: |
|||
- npm install -g grunt-cli |
@ -0,0 +1 @@ |
|||
revealjs.com |
@ -1,137 +0,0 @@ |
|||
/* global module:false */ |
|||
module.exports = function(grunt) { |
|||
var port = grunt.option('port') || 8000; |
|||
// Project configuration
|
|||
grunt.initConfig({ |
|||
pkg: grunt.file.readJSON('package.json'), |
|||
meta: { |
|||
banner: |
|||
'/*!\n' + |
|||
' * reveal.js <%= pkg.version %> (<%= grunt.template.today("yyyy-mm-dd, HH:MM") %>)\n' + |
|||
' * http://lab.hakim.se/reveal-js\n' + |
|||
' * MIT licensed\n' + |
|||
' *\n' + |
|||
' * Copyright (C) 2013 Hakim El Hattab, http://hakim.se\n' + |
|||
' */' |
|||
}, |
|||
|
|||
// Tests will be added soon
|
|||
qunit: { |
|||
files: [ 'test/*.html' ] |
|||
}, |
|||
|
|||
uglify: { |
|||
options: { |
|||
banner: '<%= meta.banner %>\n' |
|||
}, |
|||
build: { |
|||
src: 'js/reveal.js', |
|||
dest: 'js/reveal.min.js' |
|||
} |
|||
}, |
|||
|
|||
cssmin: { |
|||
compress: { |
|||
files: { |
|||
'css/reveal.min.css': [ 'css/reveal.css' ] |
|||
} |
|||
} |
|||
}, |
|||
|
|||
sass: { |
|||
main: { |
|||
files: { |
|||
'css/theme/default.css': 'css/theme/source/default.scss', |
|||
'css/theme/beige.css': 'css/theme/source/beige.scss', |
|||
'css/theme/night.css': 'css/theme/source/night.scss', |
|||
'css/theme/serif.css': 'css/theme/source/serif.scss', |
|||
'css/theme/simple.css': 'css/theme/source/simple.scss', |
|||
'css/theme/sky.css': 'css/theme/source/sky.scss', |
|||
'css/theme/moon.css': 'css/theme/source/moon.scss', |
|||
'css/theme/solarized.css': 'css/theme/source/solarized.scss' |
|||
} |
|||
} |
|||
}, |
|||
|
|||
jshint: { |
|||
options: { |
|||
curly: false, |
|||
eqeqeq: true, |
|||
immed: true, |
|||
latedef: true, |
|||
newcap: true, |
|||
noarg: true, |
|||
sub: true, |
|||
undef: true, |
|||
eqnull: true, |
|||
browser: true, |
|||
expr: true, |
|||
globals: { |
|||
head: false, |
|||
module: false, |
|||
console: false |
|||
} |
|||
}, |
|||
files: [ 'Gruntfile.js', 'js/reveal.js' ] |
|||
}, |
|||
|
|||
connect: { |
|||
server: { |
|||
options: { |
|||
port: port, |
|||
hostname: '0.0.0.0', |
|||
base: '.' |
|||
} |
|||
} |
|||
}, |
|||
|
|||
zip: { |
|||
'reveal-js-presentation.zip': [ |
|||
'index.html', |
|||
'css/**', |
|||
'js/**', |
|||
'lib/**', |
|||
'images/**', |
|||
'plugin/**' |
|||
] |
|||
}, |
|||
|
|||
watch: { |
|||
main: { |
|||
files: [ 'Gruntfile.js', 'js/reveal.js', 'css/reveal.css' ], |
|||
tasks: 'default' |
|||
}, |
|||
theme: { |
|||
files: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ], |
|||
tasks: 'themes' |
|||
} |
|||
} |
|||
|
|||
}); |
|||
|
|||
// Dependencies
|
|||
grunt.loadNpmTasks( 'grunt-contrib-qunit' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-jshint' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-cssmin' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-uglify' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-watch' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-sass' ); |
|||
grunt.loadNpmTasks( 'grunt-contrib-connect' ); |
|||
grunt.loadNpmTasks( 'grunt-zip' ); |
|||
|
|||
// Default task
|
|||
grunt.registerTask( 'default', [ 'jshint', 'cssmin', 'uglify', 'qunit' ] ); |
|||
|
|||
// Theme task
|
|||
grunt.registerTask( 'themes', [ 'sass' ] ); |
|||
|
|||
// Package presentation to archive
|
|||
grunt.registerTask( 'package', [ 'default', 'zip' ] ); |
|||
|
|||
// Serve presentation locally
|
|||
grunt.registerTask( 'serve', [ 'connect', 'watch' ] ); |
|||
|
|||
// Run tests
|
|||
grunt.registerTask( 'test', [ 'jshint', 'qunit' ] ); |
|||
|
|||
}; |
@ -1,19 +0,0 @@ |
|||
Copyright (C) 2013 Hakim El Hattab, http://hakim.se |
|||
|
|||
Permission is hereby granted, free of charge, to any person obtaining a copy |
|||
of this software and associated documentation files (the "Software"), to deal |
|||
in the Software without restriction, including without limitation the rights |
|||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|||
copies of the Software, and to permit persons to whom the Software is |
|||
furnished to do so, subject to the following conditions: |
|||
|
|||
The above copyright notice and this permission notice shall be included in |
|||
all copies or substantial portions of the Software. |
|||
|
|||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|||
THE SOFTWARE. |
@ -1,813 +0,0 @@ |
|||
# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.png?branch=master)](https://travis-ci.org/hakimel/reveal.js) |
|||
|
|||
A framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/). |
|||
|
|||
reveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a browser with support for CSS 3D transforms but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere. |
|||
|
|||
|
|||
#### More reading: |
|||
- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer. |
|||
- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history. |
|||
- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own! |
|||
- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks. |
|||
|
|||
## Slides |
|||
|
|||
Presentations are written using HTML or markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slid.es](http://slid.es). |
|||
|
|||
|
|||
## Instructions |
|||
|
|||
### Markup |
|||
|
|||
Markup hierarchy needs to be ``<div class="reveal"> <div class="slides"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the "root" of the others (at the top), and it will be included in the horizontal sequence. For example: |
|||
|
|||
```html |
|||
<div class="reveal"> |
|||
<div class="slides"> |
|||
<section>Single Horizontal Slide</section> |
|||
<section> |
|||
<section>Vertical Slide 1</section> |
|||
<section>Vertical Slide 2</section> |
|||
</section> |
|||
</div> |
|||
</div> |
|||
``` |
|||
|
|||
### Markdown |
|||
|
|||
It's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type="text/template">``` like the example below. |
|||
|
|||
This is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks). |
|||
|
|||
```html |
|||
<section data-markdown> |
|||
<script type="text/template"> |
|||
## Page title |
|||
|
|||
A paragraph with some text and a [link](http://hakim.se). |
|||
</script> |
|||
</section> |
|||
``` |
|||
|
|||
#### External Markdown |
|||
|
|||
You can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file. |
|||
|
|||
```html |
|||
<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^Note:" data-charset="iso-8859-15"></section> |
|||
``` |
|||
|
|||
### Configuration |
|||
|
|||
At the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below. |
|||
|
|||
```javascript |
|||
Reveal.initialize({ |
|||
|
|||
// Display controls in the bottom right corner |
|||
controls: true, |
|||
|
|||
// Display a presentation progress bar |
|||
progress: true, |
|||
|
|||
// Push each slide change to the browser history |
|||
history: false, |
|||
|
|||
// Enable keyboard shortcuts for navigation |
|||
keyboard: true, |
|||
|
|||
// Enable touch events for navigation |
|||
touch: true, |
|||
|
|||
// Enable the slide overview mode |
|||
overview: true, |
|||
|
|||
// Vertical centering of slides |
|||
center: true, |
|||
|
|||
// Loop the presentation |
|||
loop: false, |
|||
|
|||
// Change the presentation direction to be RTL |
|||
rtl: false, |
|||
|
|||
// Number of milliseconds between automatically proceeding to the |
|||
// next slide, disabled when set to 0, this value can be overwritten |
|||
// by using a data-autoslide attribute on your slides |
|||
autoSlide: 0, |
|||
|
|||
// Enable slide navigation via mouse wheel |
|||
mouseWheel: false, |
|||
|
|||
// Transition style |
|||
transition: 'default', // default/cube/page/concave/zoom/linear/fade/none |
|||
|
|||
// Transition speed |
|||
transitionSpeed: 'default', // default/fast/slow |
|||
|
|||
// Transition style for full page backgrounds |
|||
backgroundTransition: 'default' // default/linear/none |
|||
|
|||
}); |
|||
``` |
|||
|
|||
Note that the new default vertical centering option will break compatibility with slides that were using transitions with backgrounds (`cube` and `page`). To restore the previous behavior, set `center` to `false`. |
|||
|
|||
|
|||
The configuration can be updated after initialization using the ```configure``` method: |
|||
|
|||
```javascript |
|||
// Turn autoSlide off |
|||
Reveal.configure({ autoSlide: 0 }); |
|||
|
|||
// Start auto-sliding every 5s |
|||
Reveal.configure({ autoSlide: 5000 }); |
|||
``` |
|||
|
|||
|
|||
### Dependencies |
|||
|
|||
Reveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example: |
|||
|
|||
```javascript |
|||
Reveal.initialize({ |
|||
dependencies: [ |
|||
// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/ |
|||
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } }, |
|||
|
|||
// Interpret Markdown in <section> elements |
|||
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|||
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|||
|
|||
// Syntax highlight for <code> elements |
|||
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, |
|||
|
|||
// Zoom in and out with Alt+click |
|||
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, |
|||
|
|||
// Speaker notes |
|||
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }, |
|||
|
|||
// Remote control your reveal.js presentation using a touch device |
|||
{ src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }, |
|||
|
|||
// MathJax |
|||
{ src: 'plugin/math/math.js', async: true } |
|||
] |
|||
}); |
|||
``` |
|||
|
|||
You can add your own extensions using the same syntax. The following properties are available for each dependency object: |
|||
- **src**: Path to the script to load |
|||
- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false |
|||
- **callback**: [optional] Function to execute when the script has loaded |
|||
- **condition**: [optional] Function which must return true for the script to be loaded |
|||
|
|||
|
|||
### Presentation Size |
|||
|
|||
All presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport. |
|||
|
|||
See below for a list of configuration options related to sizing, including default values: |
|||
|
|||
```javascript |
|||
Reveal.initialize({ |
|||
|
|||
... |
|||
|
|||
// The "normal" size of the presentation, aspect ratio will be preserved |
|||
// when the presentation is scaled to fit different resolutions. Can be |
|||
// specified using percentage units. |
|||
width: 960, |
|||
height: 700, |
|||
|
|||
// Factor of the display size that should remain empty around the content |
|||
margin: 0.1, |
|||
|
|||
// Bounds for smallest/largest possible scale to apply to content |
|||
minScale: 0.2, |
|||
maxScale: 1.0 |
|||
|
|||
}); |
|||
``` |
|||
|
|||
### Keyboard Bindings |
|||
|
|||
If you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option: |
|||
|
|||
```javascript |
|||
Reveal.configure({ |
|||
keyboard: { |
|||
13: 'next', // go to the next slide when the ENTER key is pressed |
|||
27: function() {}, // do something custom when ESC is pressed |
|||
32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding) |
|||
} |
|||
}); |
|||
``` |
|||
|
|||
|
|||
### API |
|||
|
|||
The ``Reveal`` class provides a JavaScript API for controlling navigation and reading state: |
|||
|
|||
```javascript |
|||
// Navigation |
|||
Reveal.slide( indexh, indexv, indexf ); |
|||
Reveal.left(); |
|||
Reveal.right(); |
|||
Reveal.up(); |
|||
Reveal.down(); |
|||
Reveal.prev(); |
|||
Reveal.next(); |
|||
Reveal.prevFragment(); |
|||
Reveal.nextFragment(); |
|||
Reveal.toggleOverview(); |
|||
Reveal.togglePause(); |
|||
|
|||
// Retrieves the previous and current slide elements |
|||
Reveal.getPreviousSlide(); |
|||
Reveal.getCurrentSlide(); |
|||
|
|||
Reveal.getIndices(); // { h: 0, v: 0 } } |
|||
|
|||
// State checks |
|||
Reveal.isFirstSlide(); |
|||
Reveal.isLastSlide(); |
|||
Reveal.isOverview(); |
|||
Reveal.isPaused(); |
|||
``` |
|||
|
|||
### Ready Event |
|||
|
|||
The 'ready' event is fired when reveal.js has loaded all (synchronous) dependencies and is ready to start navigating. |
|||
|
|||
```javascript |
|||
Reveal.addEventListener( 'ready', function( event ) { |
|||
// event.currentSlide, event.indexh, event.indexv |
|||
} ); |
|||
``` |
|||
|
|||
### Slide Changed Event |
|||
|
|||
An 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes. |
|||
|
|||
Some libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback. |
|||
|
|||
```javascript |
|||
Reveal.addEventListener( 'slidechanged', function( event ) { |
|||
// event.previousSlide, event.currentSlide, event.indexh, event.indexv |
|||
} ); |
|||
``` |
|||
|
|||
|
|||
### States |
|||
|
|||
If you set ``data-state="somestate"`` on a slide ``<section>``, "somestate" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide. |
|||
|
|||
Furthermore you can also listen to these changes in state via JavaScript: |
|||
|
|||
```javascript |
|||
Reveal.addEventListener( 'somestate', function() { |
|||
// TODO: Sprinkle magic |
|||
}, false ); |
|||
``` |
|||
|
|||
### Slide Backgrounds |
|||
|
|||
Slides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page background colors or images by applying a ```data-background``` attribute to your ```<section>``` elements. Below are a few examples. |
|||
|
|||
```html |
|||
<section data-background="#ff0000"> |
|||
<h2>All CSS color formats are supported, like rgba() or hsl().</h2> |
|||
</section> |
|||
<section data-background="http://example.com/image.png"> |
|||
<h2>This slide will have a full-size background image.</h2> |
|||
</section> |
|||
<section data-background="http://example.com/image.png" data-background-size="100px" data-background-repeat="repeat"> |
|||
<h2>This background image will be sized to 100px and repeated.</h2> |
|||
</section> |
|||
``` |
|||
|
|||
Backgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition. |
|||
|
|||
|
|||
### Slide Transitions |
|||
The global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute: |
|||
|
|||
```html |
|||
<section data-transition="zoom"> |
|||
<h2>This slide will override the presentation transition and zoom!</h2> |
|||
</section> |
|||
|
|||
<section data-transition-speed="fast"> |
|||
<h2>Choose from three transition speeds: default, fast or slow!</h2> |
|||
</section> |
|||
``` |
|||
|
|||
Note that this does not work with the page and cube transitions. |
|||
|
|||
|
|||
### Internal links |
|||
|
|||
It's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id="some-slide">```): |
|||
|
|||
```html |
|||
<a href="#/2/2">Link</a> |
|||
<a href="#/some-slide">Link</a> |
|||
``` |
|||
|
|||
You can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide. |
|||
|
|||
```html |
|||
<a href="#" class="navigate-left"> |
|||
<a href="#" class="navigate-right"> |
|||
<a href="#" class="navigate-up"> |
|||
<a href="#" class="navigate-down"> |
|||
<a href="#" class="navigate-prev"> <!-- Previous vertical or horizontal slide --> |
|||
<a href="#" class="navigate-next"> <!-- Next vertical or horizontal slide --> |
|||
``` |
|||
|
|||
|
|||
### Fragments |
|||
Fragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/16 |
|||
|
|||
The default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment: |
|||
|
|||
```html |
|||
<section> |
|||
<p class="fragment grow">grow</p> |
|||
<p class="fragment shrink">shrink</p> |
|||
<p class="fragment roll-in">roll-in</p> |
|||
<p class="fragment fade-out">fade-out</p> |
|||
<p class="fragment highlight-red">highlight-red</p> |
|||
<p class="fragment highlight-green">highlight-green</p> |
|||
<p class="fragment highlight-blue">highlight-blue</p> |
|||
</section> |
|||
``` |
|||
|
|||
Multiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second. |
|||
|
|||
```html |
|||
<section> |
|||
<span class="fragment fade-in"> |
|||
<span class="fragment fade-out">I'll fade in, then out</span> |
|||
</span> |
|||
</section> |
|||
``` |
|||
|
|||
The display order of fragments can be controlled using the ```data-fragment-index``` attribute. |
|||
|
|||
```html |
|||
<section> |
|||
<p class="fragment" data-fragment-index="3">Appears last</p> |
|||
<p class="fragment" data-fragment-index="1">Appears first</p> |
|||
<p class="fragment" data-fragment-index="2">Appears second</p> |
|||
</section> |
|||
``` |
|||
|
|||
### Fragment events |
|||
|
|||
When a slide fragment is either shown or hidden reveal.js will dispatch an event. |
|||
|
|||
Some libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback. |
|||
|
|||
```javascript |
|||
Reveal.addEventListener( 'fragmentshown', function( event ) { |
|||
// event.fragment = the fragment DOM element |
|||
} ); |
|||
Reveal.addEventListener( 'fragmenthidden', function( event ) { |
|||
// event.fragment = the fragment DOM element |
|||
} ); |
|||
``` |
|||
|
|||
### Code syntax highlighting |
|||
|
|||
By default, Reveal is configured with [highlight.js](http://softwaremaniacs.org/soft/highlight/en/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed. |
|||
|
|||
```html |
|||
<section> |
|||
<pre><code data-trim> |
|||
(def lazy-fib |
|||
(concat |
|||
[0 1] |
|||
((fn rfib [a b] |
|||
(lazy-cons (+ a b) (rfib b (+ a b)))) 0 1))) |
|||
</code></pre> |
|||
</section> |
|||
``` |
|||
|
|||
|
|||
### Overview mode |
|||
|
|||
Press "Esc" or "o" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides, |
|||
as if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks: |
|||
|
|||
```javascript |
|||
Reveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } ); |
|||
Reveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } ); |
|||
|
|||
// Toggle the overview mode programmatically |
|||
Reveal.toggleOverview(); |
|||
``` |
|||
|
|||
### Fullscreen mode |
|||
Just press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode. |
|||
|
|||
|
|||
### Embedded media |
|||
Embedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute. |
|||
|
|||
Add `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown: |
|||
|
|||
```html |
|||
<video data-autoplay src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video> |
|||
``` |
|||
|
|||
|
|||
### Stretching elements |
|||
Sometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below: |
|||
|
|||
```html |
|||
<section> |
|||
<h2>This video will use up the remaining space on the slide</h2> |
|||
<video class="stretch" src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video> |
|||
</section> |
|||
``` |
|||
|
|||
Limitations: |
|||
- Only direct descendants of a slide section can be stretched |
|||
- Only one descendant per slide section can be stretched |
|||
|
|||
|
|||
## PDF Export |
|||
|
|||
Presentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome). |
|||
Here's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-13872948. |
|||
|
|||
1. Open your presentation with [css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css) included on the page. The default index HTML lets you add *print-pdf* anywhere in the query to include the stylesheet, for example: [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf). |
|||
2. Open the in-browser print dialog (CMD+P). |
|||
3. Change the **Destination** setting to **Save as PDF**. |
|||
4. Change the **Layout** to **Landscape**. |
|||
5. Change the **Margins** to **None**. |
|||
6. Click **Save**. |
|||
|
|||
![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png) |
|||
|
|||
## Theming |
|||
|
|||
The framework comes with a few different themes included: |
|||
|
|||
- default: Gray background, white text, blue links |
|||
- beige: Beige background, dark text, brown links |
|||
- sky: Blue background, thin white text, blue links |
|||
- night: Black background, thick white text, orange links |
|||
- serif: Cappuccino background, gray text, brown links |
|||
- simple: White background, black text, blue links |
|||
|
|||
Each theme is available as a separate stylesheet. To change theme you will need to replace **default** below with your desired theme name in index.html: |
|||
|
|||
```html |
|||
<link rel="stylesheet" href="css/theme/default.css" id="theme"> |
|||
``` |
|||
|
|||
If you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md). |
|||
|
|||
|
|||
## Speaker Notes |
|||
|
|||
reveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window. |
|||
|
|||
Notes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown. |
|||
|
|||
```html |
|||
<section> |
|||
<h2>Some Slide</h2> |
|||
|
|||
<aside class="notes"> |
|||
Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard). |
|||
</aside> |
|||
</section> |
|||
``` |
|||
|
|||
If you're using the external Markdown plugin, you can add notes with the help of a special delimiter: |
|||
|
|||
```html |
|||
<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n" data-notes="^Note:"></section> |
|||
|
|||
# Title |
|||
## Sub-title |
|||
|
|||
Here is some content... |
|||
|
|||
Note: |
|||
This will only display in the notes window. |
|||
``` |
|||
|
|||
## Server Side Speaker Notes |
|||
|
|||
In some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies: |
|||
|
|||
```javascript |
|||
Reveal.initialize({ |
|||
... |
|||
|
|||
dependencies: [ |
|||
{ src: 'socket.io/socket.io.js', async: true }, |
|||
{ src: 'plugin/notes-server/client.js', async: true } |
|||
] |
|||
}); |
|||
``` |
|||
|
|||
Then: |
|||
|
|||
1. Install [Node.js](http://nodejs.org/) |
|||
2. Run ```npm install``` |
|||
3. Run ```node plugin/notes-server``` |
|||
|
|||
|
|||
## Multiplexing |
|||
|
|||
The multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs.jit.su/](http://revealjs.jit.su). |
|||
|
|||
The multiplex plugin needs the following 3 things to operate: |
|||
|
|||
1. Master presentation that has control |
|||
2. Client presentations that follow the master |
|||
3. Socket.io server to broadcast events from the master to the clients |
|||
|
|||
More details: |
|||
|
|||
#### Master presentation |
|||
Served from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: |
|||
|
|||
1. ```npm install node-static``` |
|||
2. ```static``` |
|||
|
|||
If you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server. |
|||
|
|||
You can then access your master presentation at ```http://localhost:1947``` |
|||
|
|||
Example configuration: |
|||
```javascript |
|||
Reveal.initialize({ |
|||
// other options... |
|||
|
|||
multiplex: { |
|||
// Example values. To generate your own, see the socket.io server instructions. |
|||
secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation |
|||
id: '1ea875674b17ca76', // Obtained from socket.io server |
|||
url: 'revealjs.jit.su:80' // Location of socket.io server |
|||
}, |
|||
|
|||
// Don't forget to add the dependencies |
|||
dependencies: [ |
|||
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, |
|||
{ src: 'plugin/multiplex/master.js', async: true }, |
|||
|
|||
// and if you want speaker notes |
|||
{ src: 'plugin/notes-server/client.js', async: true } |
|||
|
|||
// other dependencies... |
|||
] |
|||
}); |
|||
``` |
|||
|
|||
#### Client presentation |
|||
Served from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients. |
|||
|
|||
Example configuration: |
|||
```javascript |
|||
Reveal.initialize({ |
|||
// other options... |
|||
|
|||
multiplex: { |
|||
// Example values. To generate your own, see the socket.io server instructions. |
|||
secret: null, // null so the clients do not have control of the master presentation |
|||
id: '1ea875674b17ca76', // id, obtained from socket.io server |
|||
url: 'revealjs.jit.su:80' // Location of socket.io server |
|||
}, |
|||
|
|||
// Don't forget to add the dependencies |
|||
dependencies: [ |
|||
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, |
|||
{ src: 'plugin/multiplex/client.js', async: true } |
|||
|
|||
// other dependencies... |
|||
] |
|||
}); |
|||
``` |
|||
|
|||
#### Socket.io server |
|||
Server that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands: |
|||
|
|||
1. ```npm install``` |
|||
2. ```node plugin/multiplex``` |
|||
|
|||
Or you use the socket.io server at [http://revealjs.jit.su](http://revealjs.jit.su). |
|||
|
|||
You'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs.jit.su](http://revealjs.jit.su), visit [http://revealjs.jit.su/token](http://revealjs.jit.su/token). |
|||
|
|||
You are very welcome to point your presentations at the Socket.io server running at [http://revealjs.jit.su](http://revealjs.jit.su), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc. |
|||
|
|||
##### socket.io server as file static server |
|||
|
|||
The socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs.jit.su](http://revealjs.jit.su). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match.) |
|||
|
|||
Example configuration: |
|||
```javascript |
|||
Reveal.initialize({ |
|||
// other options... |
|||
|
|||
multiplex: { |
|||
// Example values. To generate your own, see the socket.io server instructions. |
|||
secret: null, // null so the clients do not have control of the master presentation |
|||
id: '1ea875674b17ca76', // id, obtained from socket.io server |
|||
url: 'example.com:80' // Location of your socket.io server |
|||
}, |
|||
|
|||
// Don't forget to add the dependencies |
|||
dependencies: [ |
|||
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, |
|||
{ src: 'plugin/multiplex/client.js', async: true } |
|||
|
|||
// other dependencies... |
|||
] |
|||
``` |
|||
|
|||
It can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs.jit.su](http://revealjs.jit.su) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;) |
|||
|
|||
Example configuration: |
|||
```javascript |
|||
Reveal.initialize({ |
|||
// other options... |
|||
|
|||
multiplex: { |
|||
// Example values. To generate your own, see the socket.io server instructions. |
|||
secret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation |
|||
id: '1ea875674b17ca76', // Obtained from socket.io server |
|||
url: 'example.com:80' // Location of your socket.io server |
|||
}, |
|||
|
|||
// Don't forget to add the dependencies |
|||
dependencies: [ |
|||
{ src: '//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js', async: true }, |
|||
{ src: 'plugin/multiplex/master.js', async: true }, |
|||
{ src: 'plugin/multiplex/client.js', async: true } |
|||
|
|||
// other dependencies... |
|||
] |
|||
}); |
|||
``` |
|||
|
|||
## Leap Motion |
|||
The Leap Motion plugin lets you utilize your [Leap Motion](https://www.leapmotion.com/) device to control basic navigation of your presentation. The gestures currently supported are: |
|||
|
|||
##### 1 to 2 fingers |
|||
Pointer — Point to anything on screen. Move your finger past the device to expand the pointer. |
|||
|
|||
##### 1 hand + 3 or more fingers (left/right/up/down) |
|||
Navigate through your slides. See config options to invert movements. |
|||
|
|||
##### 2 hands upwards |
|||
Toggle the overview mode. Do it a second time to exit the overview. |
|||
|
|||
#### Config Options |
|||
You can edit the following options: |
|||
|
|||
| Property | Default | Description |
|||
| ----------------- |:-----------------:| :------------- |
|||
| autoCenter | true | Center the pointer based on where you put your finger into the leap motions detection field. |
|||
| gestureDelay | 500 | How long to delay between gestures in milliseconds. |
|||
| naturalSwipe | true | Swipe as though you were touching a touch screen. Set to false to invert. |
|||
| pointerColor | #00aaff | The color of the pointer. |
|||
| pointerOpacity | 0.7 | The opacity of the pointer. |
|||
| pointerSize | 15 | The minimum height and width of the pointer. |
|||
| pointerTolerance | 120 | Bigger = slower pointer. |
|||
|
|||
|
|||
Example configuration: |
|||
```js |
|||
Reveal.initialize({ |
|||
|
|||
// other options... |
|||
|
|||
leap: { |
|||
naturalSwipe : false, // Invert swipe gestures |
|||
pointerOpacity : 0.5, // Set pointer opacity to 0.5 |
|||
pointerColor : '#d80000' // Red pointer |
|||
}, |
|||
|
|||
dependencies: [ |
|||
{ src: 'plugin/leap/leap.js', async: true } |
|||
] |
|||
|
|||
}); |
|||
``` |
|||
|
|||
## MathJax |
|||
|
|||
If you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies). |
|||
|
|||
The plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. |
|||
|
|||
Below is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all. |
|||
|
|||
```js |
|||
Reveal.initialize({ |
|||
|
|||
// other options ... |
|||
|
|||
math: { |
|||
mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js', |
|||
config: 'TeX-AMS_HTML-full' // See http://docs.mathjax.org/en/latest/config-files.html |
|||
}, |
|||
|
|||
dependencies: [ |
|||
{ src: 'plugin/math/math.js', async: true } |
|||
] |
|||
|
|||
}); |
|||
``` |
|||
|
|||
Read MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability. |
|||
|
|||
|
|||
## Installation |
|||
|
|||
The **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source. |
|||
|
|||
### Basic setup |
|||
|
|||
The core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser. |
|||
|
|||
1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases> |
|||
|
|||
2. Unzip and replace the example contents in index.html with your own |
|||
|
|||
3. Open index.html in a browser to view it |
|||
|
|||
|
|||
### Full setup |
|||
|
|||
Some reveal.js features, like external markdown, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code. |
|||
|
|||
1. Install [Node.js](http://nodejs.org/) |
|||
|
|||
2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli) |
|||
|
|||
4. Clone the reveal.js repository |
|||
``` |
|||
$ git clone git@github.com:hakimel/reveal.js.git |
|||
``` |
|||
|
|||
5. Navigate to the reveal.js folder |
|||
``` |
|||
$ cd reveal.js |
|||
``` |
|||
|
|||
6. Install dependencies |
|||
``` |
|||
$ npm install |
|||
``` |
|||
|
|||
7. Serve the presentation and monitor source files for changes |
|||
``` |
|||
$ grunt serve |
|||
``` |
|||
|
|||
8. Open <http://localhost:8000> to view your presentation |
|||
|
|||
You can change the port by using `grunt serve --port 8001`. |
|||
|
|||
|
|||
### Folder Structure |
|||
- **css/** Core styles without which the project does not function |
|||
- **js/** Like above but for JavaScript |
|||
- **plugin/** Components that have been developed as extensions to reveal.js |
|||
- **lib/** All other third party assets (JavaScript, CSS, fonts) |
|||
|
|||
|
|||
### Contributing |
|||
|
|||
Please keep the [issue tracker](github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**. If you are reporting a bug make sure to include information about which browser and operating system you are using as well as the necessary steps to reproduce the issue. |
|||
|
|||
If you have personal support questions use [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js). |
|||
|
|||
|
|||
#### Pull requests |
|||
|
|||
- Should follow the coding style |
|||
- Tabs to indent |
|||
- Single-quoted strings |
|||
- No space between function name and opening argument parenthesis |
|||
- One space after opening and before closing parenthesis |
|||
- Should be made towards the **dev branch** |
|||
- Should be submitted from a feature/topic branch (not your master) |
|||
|
|||
|
|||
## License |
|||
|
|||
MIT licensed |
|||
|
|||
Copyright (C) 2013 Hakim El Hattab, http://hakim.se |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 64 KiB |
Before Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 645 KiB |
Before Width: | Height: | Size: 526 KiB |
Before Width: | Height: | Size: 123 KiB |
Before Width: | Height: | Size: 133 KiB |
Before Width: | Height: | Size: 113 KiB |
Before Width: | Height: | Size: 124 KiB |
Before Width: | Height: | Size: 25 KiB |
@ -0,0 +1,48 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=Lato:300italic,700italic,300,700); |
|||
|
|||
html, |
|||
body { |
|||
background-color: #222; |
|||
} |
|||
|
|||
body { |
|||
padding: 100px 50px; |
|||
font: 12px/1 Lato, 'Helvetica Neue', Helvetica, Arial, sans-serif; |
|||
color: #fff; |
|||
} |
|||
|
|||
h1 { |
|||
font-size: 2.5em; |
|||
font-weight: normal; |
|||
margin-bottom: 10px; |
|||
} |
|||
|
|||
p { |
|||
text-transform: uppercase; |
|||
} |
|||
|
|||
a { |
|||
display: inline-block; |
|||
padding: 8px 12px; |
|||
margin-top: 20px; |
|||
color: #fff; |
|||
border: 2px solid rgba( 255, 255, 255, 0.5 ); |
|||
text-decoration: none; |
|||
margin-left: 15px; |
|||
} |
|||
a:hover { |
|||
border-color: #fff; |
|||
} |
|||
|
|||
header { |
|||
position: absolute; |
|||
left: 40px; |
|||
bottom: 20px; |
|||
} |
|||
|
|||
footer { |
|||
position: absolute; |
|||
right: 40px; |
|||
bottom: 20px; |
|||
text-align: right; |
|||
} |
@ -0,0 +1,406 @@ |
|||
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */ |
|||
|
|||
/* ========================================================================== |
|||
HTML5 display definitions |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Correct `block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
article, |
|||
aside, |
|||
details, |
|||
figcaption, |
|||
figure, |
|||
footer, |
|||
header, |
|||
hgroup, |
|||
main, |
|||
nav, |
|||
section, |
|||
summary { |
|||
display: block; |
|||
} |
|||
|
|||
/** |
|||
* Correct `inline-block` display not defined in IE 8/9. |
|||
*/ |
|||
|
|||
audio, |
|||
canvas, |
|||
video { |
|||
display: inline-block; |
|||
} |
|||
|
|||
/** |
|||
* Prevent modern browsers from displaying `audio` without controls. |
|||
* Remove excess height in iOS 5 devices. |
|||
*/ |
|||
|
|||
audio:not([controls]) { |
|||
display: none; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address `[hidden]` styling not present in IE 8/9. |
|||
* Hide the `template` element in IE, Safari, and Firefox < 22. |
|||
*/ |
|||
|
|||
[hidden], |
|||
template { |
|||
display: none; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Base |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* 1. Set default font family to sans-serif. |
|||
* 2. Prevent iOS text size adjust after orientation change, without disabling |
|||
* user zoom. |
|||
*/ |
|||
|
|||
html { |
|||
font-family: sans-serif; /* 1 */ |
|||
-ms-text-size-adjust: 100%; /* 2 */ |
|||
-webkit-text-size-adjust: 100%; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* Remove default margin. |
|||
*/ |
|||
|
|||
body { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Links |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove the gray background color from active links in IE 10. |
|||
*/ |
|||
|
|||
a { |
|||
background: transparent; |
|||
} |
|||
|
|||
/** |
|||
* Address `outline` inconsistency between Chrome and other browsers. |
|||
*/ |
|||
|
|||
a:focus { |
|||
outline: thin dotted; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability when focused and also mouse hovered in all browsers. |
|||
*/ |
|||
|
|||
a:active, |
|||
a:hover { |
|||
outline: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Typography |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address variable `h1` font-size and margin within `section` and `article` |
|||
* contexts in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
h1 { |
|||
font-size: 2em; |
|||
margin: 0.67em 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
abbr[title] { |
|||
border-bottom: 1px dotted; |
|||
} |
|||
|
|||
/** |
|||
* Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
b, |
|||
strong { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
dfn { |
|||
font-style: italic; |
|||
} |
|||
|
|||
/** |
|||
* Address differences between Firefox and other browsers. |
|||
*/ |
|||
|
|||
hr { |
|||
-moz-box-sizing: content-box; |
|||
box-sizing: content-box; |
|||
height: 0; |
|||
} |
|||
|
|||
/** |
|||
* Address styling not present in IE 8/9. |
|||
*/ |
|||
|
|||
mark { |
|||
background: #ff0; |
|||
color: #000; |
|||
} |
|||
|
|||
/** |
|||
* Correct font family set oddly in Safari 5 and Chrome. |
|||
*/ |
|||
|
|||
code, |
|||
kbd, |
|||
pre, |
|||
samp { |
|||
font-family: monospace, serif; |
|||
font-size: 1em; |
|||
} |
|||
|
|||
/** |
|||
* Improve readability of pre-formatted text in all browsers. |
|||
*/ |
|||
|
|||
pre { |
|||
white-space: pre-wrap; |
|||
} |
|||
|
|||
/** |
|||
* Set consistent quote types. |
|||
*/ |
|||
|
|||
q { |
|||
quotes: "\201C" "\201D" "\2018" "\2019"; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent and variable font size in all browsers. |
|||
*/ |
|||
|
|||
small { |
|||
font-size: 80%; |
|||
} |
|||
|
|||
/** |
|||
* Prevent `sub` and `sup` affecting `line-height` in all browsers. |
|||
*/ |
|||
|
|||
sub, |
|||
sup { |
|||
font-size: 75%; |
|||
line-height: 0; |
|||
position: relative; |
|||
vertical-align: baseline; |
|||
} |
|||
|
|||
sup { |
|||
top: -0.5em; |
|||
} |
|||
|
|||
sub { |
|||
bottom: -0.25em; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Embedded content |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove border when inside `a` element in IE 8/9. |
|||
*/ |
|||
|
|||
img { |
|||
border: 0; |
|||
} |
|||
|
|||
/** |
|||
* Correct overflow displayed oddly in IE 9. |
|||
*/ |
|||
|
|||
svg:not(:root) { |
|||
overflow: hidden; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Figures |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Address margin not present in IE 8/9 and Safari 5. |
|||
*/ |
|||
|
|||
figure { |
|||
margin: 0; |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Forms |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Define consistent border, margin, and padding. |
|||
*/ |
|||
|
|||
fieldset { |
|||
border: 1px solid #c0c0c0; |
|||
margin: 0 2px; |
|||
padding: 0.35em 0.625em 0.75em; |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct `color` not being inherited in IE 8/9. |
|||
* 2. Remove padding so people aren't caught out if they zero out fieldsets. |
|||
*/ |
|||
|
|||
legend { |
|||
border: 0; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Correct font family not being inherited in all browsers. |
|||
* 2. Correct font size not being inherited in all browsers. |
|||
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. |
|||
*/ |
|||
|
|||
button, |
|||
input, |
|||
select, |
|||
textarea { |
|||
font-family: inherit; /* 1 */ |
|||
font-size: 100%; /* 2 */ |
|||
margin: 0; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Address Firefox 4+ setting `line-height` on `input` using `!important` in |
|||
* the UA stylesheet. |
|||
*/ |
|||
|
|||
button, |
|||
input { |
|||
line-height: normal; |
|||
} |
|||
|
|||
/** |
|||
* Address inconsistent `text-transform` inheritance for `button` and `select`. |
|||
* All other form control elements do not inherit `text-transform` values. |
|||
* Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. |
|||
* Correct `select` style inheritance in Firefox 4+ and Opera. |
|||
*/ |
|||
|
|||
button, |
|||
select { |
|||
text-transform: none; |
|||
} |
|||
|
|||
/** |
|||
* 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` |
|||
* and `video` controls. |
|||
* 2. Correct inability to style clickable `input` types in iOS. |
|||
* 3. Improve usability and consistency of cursor style between image-type |
|||
* `input` and others. |
|||
*/ |
|||
|
|||
button, |
|||
html input[type="button"], /* 1 */ |
|||
input[type="reset"], |
|||
input[type="submit"] { |
|||
-webkit-appearance: button; /* 2 */ |
|||
cursor: pointer; /* 3 */ |
|||
} |
|||
|
|||
/** |
|||
* Re-set default cursor for disabled elements. |
|||
*/ |
|||
|
|||
button[disabled], |
|||
html input[disabled] { |
|||
cursor: default; |
|||
} |
|||
|
|||
/** |
|||
* 1. Address box sizing set to `content-box` in IE 8/9. |
|||
* 2. Remove excess padding in IE 8/9. |
|||
*/ |
|||
|
|||
input[type="checkbox"], |
|||
input[type="radio"] { |
|||
box-sizing: border-box; /* 1 */ |
|||
padding: 0; /* 2 */ |
|||
} |
|||
|
|||
/** |
|||
* 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. |
|||
* 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome |
|||
* (include `-moz` to future-proof). |
|||
*/ |
|||
|
|||
input[type="search"] { |
|||
-webkit-appearance: textfield; /* 1 */ |
|||
-moz-box-sizing: content-box; |
|||
-webkit-box-sizing: content-box; /* 2 */ |
|||
box-sizing: content-box; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and search cancel button in Safari 5 and Chrome |
|||
* on OS X. |
|||
*/ |
|||
|
|||
input[type="search"]::-webkit-search-cancel-button, |
|||
input[type="search"]::-webkit-search-decoration { |
|||
-webkit-appearance: none; |
|||
} |
|||
|
|||
/** |
|||
* Remove inner padding and border in Firefox 4+. |
|||
*/ |
|||
|
|||
button::-moz-focus-inner, |
|||
input::-moz-focus-inner { |
|||
border: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
/** |
|||
* 1. Remove default vertical scrollbar in IE 8/9. |
|||
* 2. Improve readability and alignment in all browsers. |
|||
*/ |
|||
|
|||
textarea { |
|||
overflow: auto; /* 1 */ |
|||
vertical-align: top; /* 2 */ |
|||
} |
|||
|
|||
/* ========================================================================== |
|||
Tables |
|||
========================================================================== */ |
|||
|
|||
/** |
|||
* Remove most spacing between table cells. |
|||
*/ |
|||
|
|||
table { |
|||
border-collapse: collapse; |
|||
border-spacing: 0; |
|||
} |
@ -1,176 +0,0 @@ |
|||
/* Default Print Stylesheet Template |
|||
by Rob Glazebrook of CSSnewbie.com |
|||
Last Updated: June 4, 2008 |
|||
|
|||
Feel free (nay, compelled) to edit, append, and |
|||
manipulate this file as you see fit. */ |
|||
|
|||
|
|||
/* SECTION 1: Set default width, margin, float, and |
|||
background. This prevents elements from extending |
|||
beyond the edge of the printed page, and prevents |
|||
unnecessary background images from printing */ |
|||
body { |
|||
background: #fff; |
|||
font-size: 13pt; |
|||
width: auto; |
|||
height: auto; |
|||
border: 0; |
|||
margin: 0 5%; |
|||
padding: 0; |
|||
float: none !important; |
|||
overflow: visible; |
|||
} |
|||
html { |
|||
background: #fff; |
|||
width: auto; |
|||
height: auto; |
|||
overflow: visible; |
|||
} |
|||
|
|||
/* SECTION 2: Remove any elements not needed in print. |
|||
This would include navigation, ads, sidebars, etc. */ |
|||
.nestedarrow, |
|||
.controls, |
|||
.reveal .progress, |
|||
.reveal.overview, |
|||
.fork-reveal, |
|||
.share-reveal, |
|||
.state-background { |
|||
display: none !important; |
|||
} |
|||
|
|||
/* SECTION 3: Set body font face, size, and color. |
|||
Consider using a serif font for readability. */ |
|||
body, p, td, li, div, a { |
|||
font-size: 16pt!important; |
|||
font-family: Georgia, "Times New Roman", Times, serif !important; |
|||
color: #000; |
|||
} |
|||
|
|||
/* SECTION 4: Set heading font face, sizes, and color. |
|||
Differentiate your headings from your body text. |
|||
Perhaps use a large sans-serif for distinction. */ |
|||
h1,h2,h3,h4,h5,h6 { |
|||
color: #000!important; |
|||
height: auto; |
|||
line-height: normal; |
|||
font-family: Georgia, "Times New Roman", Times, serif !important; |
|||
text-shadow: 0 0 0 #000 !important; |
|||
text-align: left; |
|||
letter-spacing: normal; |
|||
} |
|||
/* Need to reduce the size of the fonts for printing */ |
|||
h1 { font-size: 26pt !important; } |
|||
h2 { font-size: 22pt !important; } |
|||
h3 { font-size: 20pt !important; } |
|||
h4 { font-size: 20pt !important; font-variant: small-caps; } |
|||
h5 { font-size: 19pt !important; } |
|||
h6 { font-size: 18pt !important; font-style: italic; } |
|||
|
|||
/* SECTION 5: Make hyperlinks more usable. |
|||
Ensure links are underlined, and consider appending |
|||
the URL to the end of the link for usability. */ |
|||
a:link, |
|||
a:visited { |
|||
color: #000 !important; |
|||
font-weight: bold; |
|||
text-decoration: underline; |
|||
} |
|||
/* |
|||
.reveal a:link:after, |
|||
.reveal a:visited:after { |
|||
content: " (" attr(href) ") "; |
|||
color: #222 !important; |
|||
font-size: 90%; |
|||
} |
|||
*/ |
|||
|
|||
|
|||
/* SECTION 6: more reveal.js specific additions by @skypanther */ |
|||
ul, ol, div, p { |
|||
visibility: visible; |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
display: block; |
|||
overflow: visible; |
|||
margin: auto; |
|||
text-align: left !important; |
|||
} |
|||
.reveal .slides { |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
|
|||
left: auto; |
|||
top: auto; |
|||
margin-left: auto; |
|||
margin-top: auto; |
|||
padding: auto; |
|||
|
|||
overflow: visible; |
|||
display: block; |
|||
|
|||
text-align: center; |
|||
-webkit-perspective: none; |
|||
-moz-perspective: none; |
|||
-ms-perspective: none; |
|||
perspective: none; |
|||
|
|||
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ |
|||
-moz-perspective-origin: 50% 50%; |
|||
-ms-perspective-origin: 50% 50%; |
|||
perspective-origin: 50% 50%; |
|||
} |
|||
.reveal .slides>section, |
|||
.reveal .slides>section>section { |
|||
|
|||
visibility: visible !important; |
|||
position: static !important; |
|||
width: 90% !important; |
|||
height: auto !important; |
|||
display: block !important; |
|||
overflow: visible !important; |
|||
|
|||
left: 0% !important; |
|||
top: 0% !important; |
|||
margin-left: 0px !important; |
|||
margin-top: 0px !important; |
|||
padding: 20px 0px !important; |
|||
|
|||
opacity: 1 !important; |
|||
|
|||
-webkit-transform-style: flat !important; |
|||
-moz-transform-style: flat !important; |
|||
-ms-transform-style: flat !important; |
|||
transform-style: flat !important; |
|||
|
|||
-webkit-transform: none !important; |
|||
-moz-transform: none !important; |
|||
-ms-transform: none !important; |
|||
transform: none !important; |
|||
} |
|||
.reveal section { |
|||
page-break-after: always !important; |
|||
display: block !important; |
|||
} |
|||
.reveal section .fragment { |
|||
opacity: 1 !important; |
|||
visibility: visible !important; |
|||
|
|||
-webkit-transform: none !important; |
|||
-moz-transform: none !important; |
|||
-ms-transform: none !important; |
|||
transform: none !important; |
|||
} |
|||
.reveal section:last-of-type { |
|||
page-break-after: avoid !important; |
|||
} |
|||
.reveal section img { |
|||
display: block; |
|||
margin: 15px 0px; |
|||
background: rgba(255,255,255,1); |
|||
border: 1px solid #666; |
|||
box-shadow: none; |
|||
} |
@ -1,190 +0,0 @@ |
|||
/* Default Print Stylesheet Template |
|||
by Rob Glazebrook of CSSnewbie.com |
|||
Last Updated: June 4, 2008 |
|||
|
|||
Feel free (nay, compelled) to edit, append, and |
|||
manipulate this file as you see fit. */ |
|||
|
|||
|
|||
/* SECTION 1: Set default width, margin, float, and |
|||
background. This prevents elements from extending |
|||
beyond the edge of the printed page, and prevents |
|||
unnecessary background images from printing */ |
|||
|
|||
* { |
|||
-webkit-print-color-adjust: exact; |
|||
} |
|||
|
|||
body { |
|||
font-size: 18pt; |
|||
width: 297mm; |
|||
height: 229mm; |
|||
margin: 0 auto !important; |
|||
border: 0; |
|||
padding: 0; |
|||
float: none !important; |
|||
overflow: visible; |
|||
} |
|||
|
|||
html { |
|||
width: 100%; |
|||
height: 100%; |
|||
overflow: visible; |
|||
} |
|||
|
|||
@page { |
|||
size: letter landscape; |
|||
margin: 0; |
|||
} |
|||
|
|||
/* SECTION 2: Remove any elements not needed in print. |
|||
This would include navigation, ads, sidebars, etc. */ |
|||
.nestedarrow, |
|||
.controls, |
|||
.reveal .progress, |
|||
.reveal.overview, |
|||
.fork-reveal, |
|||
.share-reveal, |
|||
.state-background { |
|||
display: none !important; |
|||
} |
|||
|
|||
/* SECTION 3: Set body font face, size, and color. |
|||
Consider using a serif font for readability. */ |
|||
body, p, td, li, div { |
|||
font-size: 18pt; |
|||
} |
|||
|
|||
/* SECTION 4: Set heading font face, sizes, and color. |
|||
Differentiate your headings from your body text. |
|||
Perhaps use a large sans-serif for distinction. */ |
|||
h1,h2,h3,h4,h5,h6 { |
|||
text-shadow: 0 0 0 #000 !important; |
|||
} |
|||
|
|||
/* SECTION 5: Make hyperlinks more usable. |
|||
Ensure links are underlined, and consider appending |
|||
the URL to the end of the link for usability. */ |
|||
a:link, |
|||
a:visited { |
|||
font-weight: bold; |
|||
text-decoration: underline; |
|||
} |
|||
|
|||
.reveal pre code { |
|||
overflow: hidden !important; |
|||
font-family: monospace !important; |
|||
} |
|||
|
|||
|
|||
/* SECTION 6: more reveal.js specific additions by @skypanther */ |
|||
ul, ol, div, p { |
|||
visibility: visible; |
|||
position: static; |
|||
width: auto; |
|||
height: auto; |
|||
display: block; |
|||
overflow: visible; |
|||
margin: auto; |
|||
} |
|||
.reveal { |
|||
width: auto !important; |
|||
height: auto !important; |
|||
overflow: hidden !important; |
|||
} |
|||
.reveal .slides { |
|||
position: static; |
|||
width: 100%; |
|||
height: auto; |
|||
|
|||
left: auto; |
|||
top: auto; |
|||
margin: 0 !important; |
|||
padding: 0 !important; |
|||
|
|||
overflow: visible; |
|||
display: block; |
|||
|
|||
text-align: center; |
|||
|
|||
-webkit-perspective: none; |
|||
-moz-perspective: none; |
|||
-ms-perspective: none; |
|||
perspective: none; |
|||
|
|||
-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */ |
|||
-moz-perspective-origin: 50% 50%; |
|||
-ms-perspective-origin: 50% 50%; |
|||
perspective-origin: 50% 50%; |
|||
} |
|||
.reveal .slides section { |
|||
|
|||
page-break-after: always !important; |
|||
|
|||
visibility: visible !important; |
|||
position: relative !important; |
|||
width: 100% !important; |
|||
height: 229mm !important; |
|||
min-height: 229mm !important; |
|||
display: block !important; |
|||
overflow: hidden !important; |
|||
|
|||
left: 0 !important; |
|||
top: 0 !important; |
|||
margin: 0 !important; |
|||
padding: 2cm 2cm 0 2cm !important; |
|||
box-sizing: border-box !important; |
|||
|
|||
opacity: 1 !important; |
|||
|
|||
-webkit-transform-style: flat !important; |
|||
-moz-transform-style: flat !important; |
|||
-ms-transform-style: flat !important; |
|||
transform-style: flat !important; |
|||
|
|||
-webkit-transform: none !important; |
|||
-moz-transform: none !important; |
|||
-ms-transform: none !important; |
|||
transform: none !important; |
|||
} |
|||
.reveal section.stack { |
|||
margin: 0 !important; |
|||
padding: 0 !important; |
|||
page-break-after: avoid !important; |
|||
height: auto !important; |
|||
min-height: auto !important; |
|||
} |
|||
.reveal .absolute-element { |
|||
margin-left: 2.2cm; |
|||
margin-top: 1.8cm; |
|||
} |
|||
.reveal section .fragment { |
|||
opacity: 1 !important; |
|||
visibility: visible !important; |
|||
|
|||
-webkit-transform: none !important; |
|||
-moz-transform: none !important; |
|||
-ms-transform: none !important; |
|||
transform: none !important; |
|||
} |
|||
.reveal section .slide-background { |
|||
position: absolute; |
|||
top: 0; |
|||
left: 0; |
|||
width: 100%; |
|||
z-index: 0; |
|||
} |
|||
.reveal section>* { |
|||
position: relative; |
|||
z-index: 1; |
|||
} |
|||
.reveal img { |
|||
box-shadow: none; |
|||
} |
|||
.reveal .roll { |
|||
overflow: visible; |
|||
line-height: 1em; |
|||
} |
|||
.reveal small a { |
|||
font-size: 16pt !important; |
|||
} |
@ -1,23 +0,0 @@ |
|||
## Dependencies |
|||
|
|||
Themes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup |
|||
|
|||
|
|||
|
|||
## Creating a Theme |
|||
|
|||
To create your own theme, start by duplicating any ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source) and adding it to the compilation list in the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js). |
|||
|
|||
Each theme file does four things in the following order: |
|||
|
|||
1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)** |
|||
Shared utility functions. |
|||
|
|||
2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)** |
|||
Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3. |
|||
|
|||
3. **Override** |
|||
This is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding full selectors with hardcoded styles. |
|||
|
|||
4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)** |
|||
The template theme file which will generate final CSS output based on the currently defined variables. |
@ -1,142 +0,0 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
/** |
|||
* Beige theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url("../../lib/font/league_gothic-webfont.eot"); |
|||
src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); |
|||
font-weight: normal; |
|||
font-style: normal; } |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #f7f2d3; |
|||
background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); |
|||
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3)); |
|||
background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); |
|||
background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); |
|||
background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); |
|||
background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%); |
|||
background-color: #f7f3de; } |
|||
|
|||
.reveal { |
|||
font-family: "Lato", sans-serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: #333333; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: rgba(79, 64, 28, 0.99); |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #333333; |
|||
font-family: "League Gothic", Impact, sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: 0.02em; |
|||
text-transform: uppercase; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0 1px 0 #cccccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbbbbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaaaaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #8b743d; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #c0a86e; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #564826; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid #333333; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #8b743d; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #8b743d; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #8b743d; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #8b743d; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #8b743d; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #c0a86e; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #c0a86e; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #c0a86e; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #c0a86e; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #8b743d; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,144 +0,0 @@ |
|||
@import url(http://fonts.googleapis.com/css?family=Russo+One&subset=latin,cyrillic); |
|||
|
|||
/** |
|||
* Solarized Dark theme for reveal.js. |
|||
* Author: Achim Staebler |
|||
*/ |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url("../../lib/font/league_gothic-webfont.eot"); |
|||
src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); |
|||
font-weight: normal; |
|||
font-style: normal; } |
|||
|
|||
/** |
|||
* Solarized colors by Ethan Schoonover |
|||
*/ |
|||
html * { |
|||
color-profile: sRGB; |
|||
rendering-intent: auto; } |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #002b36; |
|||
background-color: #002b36; } |
|||
|
|||
.reveal { |
|||
font-family: 'Russo One', sans-serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: #93a1a1; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: #d33682; |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #eee8d5; |
|||
font-family: 'Russo One', sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: 0.02em; |
|||
text-transform: uppercase; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
font-size:100px; |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #268bd2; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #78b9e6; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #1a6091; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid #93a1a1; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #268bd2; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #78b9e6; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #268bd2; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,130 +0,0 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=Montserrat:700); |
|||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); |
|||
/** |
|||
* Black theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #111111; |
|||
background-color: #111111; } |
|||
|
|||
.reveal { |
|||
font-family: "Open Sans", sans-serif; |
|||
font-size: 30px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: #eeeeee; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: #e7ad52; |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #eeeeee; |
|||
font-family: "Montserrat", Impact, sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: -0.03em; |
|||
text-transform: none; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #e7ad52; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #f3d7ac; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #d08a1d; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid #eeeeee; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #e7ad52; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #e7ad52; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #e7ad52; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #e7ad52; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #e7ad52; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #f3d7ac; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #f3d7ac; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #f3d7ac; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #f3d7ac; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #e7ad52; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,132 +0,0 @@ |
|||
/** |
|||
* A simple theme for reveal.js presentations, similar |
|||
* to the default theme. The accent color is brown. |
|||
* |
|||
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. |
|||
*/ |
|||
.reveal a:not(.image) { |
|||
line-height: 1.3em; } |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #f0f1eb; |
|||
background-color: #f0f1eb; } |
|||
|
|||
.reveal { |
|||
font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: black; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: #26351c; |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #383d3d; |
|||
font-family: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: 0.02em; |
|||
text-transform: none; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #51483d; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #8b7c69; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #25211c; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid black; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #51483d; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #51483d; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #51483d; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #51483d; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #51483d; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #8b7c69; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #8b7c69; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #8b7c69; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #8b7c69; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #51483d; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,132 +0,0 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); |
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
/** |
|||
* A simple theme for reveal.js presentations, similar |
|||
* to the default theme. The accent color is darkblue. |
|||
* |
|||
* This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. |
|||
* reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: white; |
|||
background-color: white; } |
|||
|
|||
.reveal { |
|||
font-family: "Lato", sans-serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: black; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: rgba(0, 0, 0, 0.99); |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: black; |
|||
font-family: "News Cycle", Impact, sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: 0.02em; |
|||
text-transform: none; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: darkblue; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #0000f1; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #00003f; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid black; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: darkblue; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: darkblue; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: darkblue; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: darkblue; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: darkblue; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #0000f1; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #0000f1; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #0000f1; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #0000f1; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: darkblue; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,139 +0,0 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); |
|||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); |
|||
/** |
|||
* Sky theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
.reveal a:not(.image) { |
|||
line-height: 1.3em; } |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #add9e4; |
|||
background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); |
|||
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4)); |
|||
background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); |
|||
background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); |
|||
background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); |
|||
background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%); |
|||
background-color: #f7fbfc; } |
|||
|
|||
.reveal { |
|||
font-family: "Open Sans", sans-serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: #333333; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: #134674; |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #333333; |
|||
font-family: "Quicksand", sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: -0.08em; |
|||
text-transform: uppercase; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #3b759e; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #74a7cb; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #264c66; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid #333333; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #3b759e; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #3b759e; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #3b759e; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #3b759e; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #3b759e; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #74a7cb; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #74a7cb; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #74a7cb; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #74a7cb; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #3b759e; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,142 +0,0 @@ |
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
/** |
|||
* Solarized Light theme for reveal.js. |
|||
* Author: Achim Staebler |
|||
*/ |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url("../../lib/font/league_gothic-webfont.eot"); |
|||
src: url("../../lib/font/league_gothic-webfont.eot?#iefix") format("embedded-opentype"), url("../../lib/font/league_gothic-webfont.woff") format("woff"), url("../../lib/font/league_gothic-webfont.ttf") format("truetype"), url("../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular") format("svg"); |
|||
font-weight: normal; |
|||
font-style: normal; } |
|||
|
|||
/** |
|||
* Solarized colors by Ethan Schoonover |
|||
*/ |
|||
html * { |
|||
color-profile: sRGB; |
|||
rendering-intent: auto; } |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
body { |
|||
background: #fdf6e3; |
|||
background-color: #fdf6e3; } |
|||
|
|||
.reveal { |
|||
font-family: "Lato", sans-serif; |
|||
font-size: 36px; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: #657b83; } |
|||
|
|||
::selection { |
|||
color: white; |
|||
background: #d33682; |
|||
text-shadow: none; } |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: 0 0 20px 0; |
|||
color: #586e75; |
|||
font-family: "League Gothic", Impact, sans-serif; |
|||
line-height: 0.9em; |
|||
letter-spacing: 0.02em; |
|||
text-transform: uppercase; |
|||
text-shadow: none; } |
|||
|
|||
.reveal h1 { |
|||
text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2); } |
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
.reveal a:not(.image) { |
|||
color: #268bd2; |
|||
text-decoration: none; |
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; } |
|||
|
|||
.reveal a:not(.image):hover { |
|||
color: #78b9e6; |
|||
text-shadow: none; |
|||
border: none; } |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: #1a6091; } |
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255, 255, 255, 0.12); |
|||
border: 4px solid #657b83; |
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; } |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255, 255, 255, 0.2); |
|||
border-color: #268bd2; |
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); } |
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: #268bd2; } |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: #78b9e6; } |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: #78b9e6; } |
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
.reveal .progress { |
|||
background: rgba(0, 0, 0, 0.2); } |
|||
|
|||
.reveal .progress span { |
|||
background: #268bd2; |
|||
-webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); |
|||
transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); } |
@ -1,50 +0,0 @@ |
|||
/** |
|||
* Beige theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url('../../lib/font/league_gothic-webfont.eot'); |
|||
src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), |
|||
url('../../lib/font/league_gothic-webfont.woff') format('woff'), |
|||
url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), |
|||
url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); |
|||
|
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
|
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
|
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainColor: #333; |
|||
$headingColor: #333; |
|||
$headingTextShadow: none; |
|||
$backgroundColor: #f7f3de; |
|||
$linkColor: #8b743d; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: rgba(79, 64, 28, 0.99); |
|||
$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); |
|||
|
|||
// Background generator |
|||
@mixin bodyBackground() { |
|||
@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) ); |
|||
} |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,42 +0,0 @@ |
|||
/** |
|||
* Default theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url('../../lib/font/league_gothic-webfont.eot'); |
|||
src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), |
|||
url('../../lib/font/league_gothic-webfont.woff') format('woff'), |
|||
url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), |
|||
url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); |
|||
|
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
|
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15); |
|||
|
|||
// Background generator |
|||
@mixin bodyBackground() { |
|||
@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) ); |
|||
} |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,68 +0,0 @@ |
|||
/** |
|||
* Solarized Dark theme for reveal.js. |
|||
* Author: Achim Staebler |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url('../../lib/font/league_gothic-webfont.eot'); |
|||
src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), |
|||
url('../../lib/font/league_gothic-webfont.woff') format('woff'), |
|||
url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), |
|||
url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); |
|||
|
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
|
|||
@import url(http://fonts.googleapis.com/css?family=Russo+One&subset=latin,cyrillic); |
|||
|
|||
/** |
|||
* Solarized colors by Ethan Schoonover |
|||
*/ |
|||
html * { |
|||
color-profile: sRGB; |
|||
rendering-intent: auto; |
|||
} |
|||
|
|||
// Solarized colors |
|||
$base03: #002b36; |
|||
$base02: #073642; |
|||
$base01: #586e75; |
|||
$base00: #657b83; |
|||
$base0: #839496; |
|||
$base1: #93a1a1; |
|||
$base2: #eee8d5; |
|||
$base3: #fdf6e3; |
|||
$yellow: #b58900; |
|||
$orange: #cb4b16; |
|||
$red: #dc322f; |
|||
$magenta: #d33682; |
|||
$violet: #6c71c4; |
|||
$blue: #268bd2; |
|||
$cyan: #2aa198; |
|||
$green: #859900; |
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainColor: $base1; |
|||
$headingColor: $base2; |
|||
$headingTextShadow: none; |
|||
$backgroundColor: $base03; |
|||
$linkColor: $blue; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: $magenta; |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,35 +0,0 @@ |
|||
/** |
|||
* Black theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@import url(https://fonts.googleapis.com/css?family=Montserrat:700); |
|||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic); |
|||
|
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$backgroundColor: #111; |
|||
|
|||
$mainFont: 'Open Sans', sans-serif; |
|||
$linkColor: #e7ad52; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$headingFont: 'Montserrat', Impact, sans-serif; |
|||
$headingTextShadow: none; |
|||
$headingLetterSpacing: -0.03em; |
|||
$headingTextTransform: none; |
|||
$selectionBackgroundColor: #e7ad52; |
|||
$mainFontSize: 30px; |
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,35 +0,0 @@ |
|||
/** |
|||
* A simple theme for reveal.js presentations, similar |
|||
* to the default theme. The accent color is brown. |
|||
* |
|||
* This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed. |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; |
|||
$mainColor: #000; |
|||
$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif; |
|||
$headingColor: #383D3D; |
|||
$headingTextShadow: none; |
|||
$headingTextTransform: none; |
|||
$backgroundColor: #F0F1EB; |
|||
$linkColor: #51483D; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: #26351C; |
|||
|
|||
.reveal a:not(.image) { |
|||
line-height: 1.3em; |
|||
} |
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,38 +0,0 @@ |
|||
/** |
|||
* A simple theme for reveal.js presentations, similar |
|||
* to the default theme. The accent color is darkblue. |
|||
* |
|||
* This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed. |
|||
* reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700); |
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
|
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainFont: 'Lato', sans-serif; |
|||
$mainColor: #000; |
|||
$headingFont: 'News Cycle', Impact, sans-serif; |
|||
$headingColor: #000; |
|||
$headingTextShadow: none; |
|||
$headingTextTransform: none; |
|||
$backgroundColor: #fff; |
|||
$linkColor: #00008B; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: rgba(0, 0, 0, 0.99); |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,46 +0,0 @@ |
|||
/** |
|||
* Sky theme for reveal.js. |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic); |
|||
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700); |
|||
|
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainFont: 'Open Sans', sans-serif; |
|||
$mainColor: #333; |
|||
$headingFont: 'Quicksand', sans-serif; |
|||
$headingColor: #333; |
|||
$headingLetterSpacing: -0.08em; |
|||
$headingTextShadow: none; |
|||
$backgroundColor: #f7fbfc; |
|||
$linkColor: #3b759e; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: #134674; |
|||
|
|||
// Fix links so they are not cut off |
|||
.reveal a:not(.image) { |
|||
line-height: 1.3em; |
|||
} |
|||
|
|||
// Background generator |
|||
@mixin bodyBackground() { |
|||
@include radial-gradient( #add9e4, #f7fbfc ); |
|||
} |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,74 +0,0 @@ |
|||
/** |
|||
* Solarized Light theme for reveal.js. |
|||
* Author: Achim Staebler |
|||
*/ |
|||
|
|||
|
|||
// Default mixins and settings ----------------- |
|||
@import "../template/mixins"; |
|||
@import "../template/settings"; |
|||
// --------------------------------------------- |
|||
|
|||
|
|||
|
|||
// Include theme-specific fonts |
|||
@font-face { |
|||
font-family: 'League Gothic'; |
|||
src: url('../../lib/font/league_gothic-webfont.eot'); |
|||
src: url('../../lib/font/league_gothic-webfont.eot?#iefix') format('embedded-opentype'), |
|||
url('../../lib/font/league_gothic-webfont.woff') format('woff'), |
|||
url('../../lib/font/league_gothic-webfont.ttf') format('truetype'), |
|||
url('../../lib/font/league_gothic-webfont.svg#LeagueGothicRegular') format('svg'); |
|||
|
|||
font-weight: normal; |
|||
font-style: normal; |
|||
} |
|||
|
|||
@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic); |
|||
|
|||
|
|||
/** |
|||
* Solarized colors by Ethan Schoonover |
|||
*/ |
|||
html * { |
|||
color-profile: sRGB; |
|||
rendering-intent: auto; |
|||
} |
|||
|
|||
// Solarized colors |
|||
$base03: #002b36; |
|||
$base02: #073642; |
|||
$base01: #586e75; |
|||
$base00: #657b83; |
|||
$base0: #839496; |
|||
$base1: #93a1a1; |
|||
$base2: #eee8d5; |
|||
$base3: #fdf6e3; |
|||
$yellow: #b58900; |
|||
$orange: #cb4b16; |
|||
$red: #dc322f; |
|||
$magenta: #d33682; |
|||
$violet: #6c71c4; |
|||
$blue: #268bd2; |
|||
$cyan: #2aa198; |
|||
$green: #859900; |
|||
|
|||
// Override theme settings (see ../template/settings.scss) |
|||
$mainColor: $base00; |
|||
$headingColor: $base01; |
|||
$headingTextShadow: none; |
|||
$backgroundColor: $base3; |
|||
$linkColor: $blue; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
$selectionBackgroundColor: $magenta; |
|||
|
|||
// Background generator |
|||
// @mixin bodyBackground() { |
|||
// @include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) ); |
|||
// } |
|||
|
|||
|
|||
|
|||
// Theme template ------------------------------ |
|||
@import "../template/theme"; |
|||
// --------------------------------------------- |
@ -1,29 +0,0 @@ |
|||
@mixin vertical-gradient( $top, $bottom ) { |
|||
background: $top; |
|||
background: -moz-linear-gradient( top, $top 0%, $bottom 100% ); |
|||
background: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) ); |
|||
background: -webkit-linear-gradient( top, $top 0%, $bottom 100% ); |
|||
background: -o-linear-gradient( top, $top 0%, $bottom 100% ); |
|||
background: -ms-linear-gradient( top, $top 0%, $bottom 100% ); |
|||
background: linear-gradient( top, $top 0%, $bottom 100% ); |
|||
} |
|||
|
|||
@mixin horizontal-gradient( $top, $bottom ) { |
|||
background: $top; |
|||
background: -moz-linear-gradient( left, $top 0%, $bottom 100% ); |
|||
background: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) ); |
|||
background: -webkit-linear-gradient( left, $top 0%, $bottom 100% ); |
|||
background: -o-linear-gradient( left, $top 0%, $bottom 100% ); |
|||
background: -ms-linear-gradient( left, $top 0%, $bottom 100% ); |
|||
background: linear-gradient( left, $top 0%, $bottom 100% ); |
|||
} |
|||
|
|||
@mixin radial-gradient( $outer, $inner, $type: circle ) { |
|||
background: $outer; |
|||
background: -moz-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); |
|||
background: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) ); |
|||
background: -webkit-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); |
|||
background: -o-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); |
|||
background: -ms-radial-gradient( center, $type cover, $inner 0%, $outer 100% ); |
|||
background: radial-gradient( center, $type cover, $inner 0%, $outer 100% ); |
|||
} |
@ -1,34 +0,0 @@ |
|||
// Base settings for all themes that can optionally be |
|||
// overridden by the super-theme |
|||
|
|||
// Background of the presentation |
|||
$backgroundColor: #2b2b2b; |
|||
|
|||
// Primary/body text |
|||
$mainFont: 'Lato', sans-serif; |
|||
$mainFontSize: 36px; |
|||
$mainColor: #eee; |
|||
|
|||
// Headings |
|||
$headingMargin: 0 0 20px 0; |
|||
$headingFont: 'League Gothic', Impact, sans-serif; |
|||
$headingColor: #eee; |
|||
$headingLineHeight: 0.9em; |
|||
$headingLetterSpacing: 0.02em; |
|||
$headingTextTransform: uppercase; |
|||
$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2); |
|||
$heading1TextShadow: $headingTextShadow; |
|||
|
|||
// Links and actions |
|||
$linkColor: #13DAEC; |
|||
$linkColorHover: lighten( $linkColor, 20% ); |
|||
|
|||
// Text selection |
|||
$selectionBackgroundColor: #FF5E99; |
|||
$selectionColor: #fff; |
|||
|
|||
// Generates the presentation background, can be overridden |
|||
// to return a background image or gradient |
|||
@mixin bodyBackground() { |
|||
background: $backgroundColor; |
|||
} |
@ -1,163 +0,0 @@ |
|||
// Base theme template for reveal.js |
|||
|
|||
/********************************************* |
|||
* GLOBAL STYLES |
|||
*********************************************/ |
|||
|
|||
body { |
|||
@include bodyBackground(); |
|||
background-color: $backgroundColor; |
|||
} |
|||
|
|||
.reveal { |
|||
font-family: $mainFont; |
|||
font-size: $mainFontSize; |
|||
font-weight: 200; |
|||
letter-spacing: -0.02em; |
|||
color: $mainColor; |
|||
} |
|||
|
|||
::selection { |
|||
color: $selectionColor; |
|||
background: $selectionBackgroundColor; |
|||
text-shadow: none; |
|||
} |
|||
|
|||
/********************************************* |
|||
* HEADERS |
|||
*********************************************/ |
|||
|
|||
.reveal h1, |
|||
.reveal h2, |
|||
.reveal h3, |
|||
.reveal h4, |
|||
.reveal h5, |
|||
.reveal h6 { |
|||
margin: $headingMargin; |
|||
color: $headingColor; |
|||
|
|||
font-family: $headingFont; |
|||
line-height: $headingLineHeight; |
|||
letter-spacing: $headingLetterSpacing; |
|||
|
|||
text-transform: $headingTextTransform; |
|||
text-shadow: $headingTextShadow; |
|||
} |
|||
|
|||
.reveal h1 { |
|||
text-shadow: $heading1TextShadow; |
|||
} |
|||
|
|||
|
|||
/********************************************* |
|||
* LINKS |
|||
*********************************************/ |
|||
|
|||
.reveal a:not(.image) { |
|||
color: $linkColor; |
|||
text-decoration: none; |
|||
|
|||
-webkit-transition: color .15s ease; |
|||
-moz-transition: color .15s ease; |
|||
-ms-transition: color .15s ease; |
|||
-o-transition: color .15s ease; |
|||
transition: color .15s ease; |
|||
} |
|||
.reveal a:not(.image):hover { |
|||
color: $linkColorHover; |
|||
|
|||
text-shadow: none; |
|||
border: none; |
|||
} |
|||
|
|||
.reveal .roll span:after { |
|||
color: #fff; |
|||
background: darken( $linkColor, 15% ); |
|||
} |
|||
|
|||
|
|||
/********************************************* |
|||
* IMAGES |
|||
*********************************************/ |
|||
|
|||
.reveal section img { |
|||
margin: 15px 0px; |
|||
background: rgba(255,255,255,0.12); |
|||
border: 4px solid $mainColor; |
|||
|
|||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); |
|||
|
|||
-webkit-transition: all .2s linear; |
|||
-moz-transition: all .2s linear; |
|||
-ms-transition: all .2s linear; |
|||
-o-transition: all .2s linear; |
|||
transition: all .2s linear; |
|||
} |
|||
|
|||
.reveal a:hover img { |
|||
background: rgba(255,255,255,0.2); |
|||
border-color: $linkColor; |
|||
|
|||
box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); |
|||
} |
|||
|
|||
|
|||
/********************************************* |
|||
* NAVIGATION CONTROLS |
|||
*********************************************/ |
|||
|
|||
.reveal .controls div.navigate-left, |
|||
.reveal .controls div.navigate-left.enabled { |
|||
border-right-color: $linkColor; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-right, |
|||
.reveal .controls div.navigate-right.enabled { |
|||
border-left-color: $linkColor; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-up, |
|||
.reveal .controls div.navigate-up.enabled { |
|||
border-bottom-color: $linkColor; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-down, |
|||
.reveal .controls div.navigate-down.enabled { |
|||
border-top-color: $linkColor; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-left.enabled:hover { |
|||
border-right-color: $linkColorHover; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-right.enabled:hover { |
|||
border-left-color: $linkColorHover; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-up.enabled:hover { |
|||
border-bottom-color: $linkColorHover; |
|||
} |
|||
|
|||
.reveal .controls div.navigate-down.enabled:hover { |
|||
border-top-color: $linkColorHover; |
|||
} |
|||
|
|||
|
|||
/********************************************* |
|||
* PROGRESS BAR |
|||
*********************************************/ |
|||
|
|||
.reveal .progress { |
|||
background: rgba(0,0,0,0.2); |
|||
} |
|||
.reveal .progress span { |
|||
background: $linkColor; |
|||
|
|||
-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |
|||
-moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |
|||
-ms-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |
|||
-o-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |
|||
transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985); |
|||
} |
|||
|
|||
|
@ -1,157 +1,52 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<html> |
|||
<head> |
|||
|
|||
<meta charset="utf-8"> |
|||
<meta http-equiv="X-UA-Compatible" content="chrome=1"> |
|||
<title>reveal.js - The HTML Presentations Framework</title> |
|||
|
|||
<title>Виртуализация на приложения с Ulteo OVD</title> |
|||
<link rel="stylesheet" href="css/normalize.css"> |
|||
<link rel="stylesheet" href="css/main.css"> |
|||
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> |
|||
|
|||
<link rel="stylesheet" href="./css/reveal.min.css"> |
|||
<link rel="stylesheet" href="./css/theme/moon.css" id="theme"> |
|||
</head> |
|||
<!--[if lt IE 9]> |
|||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> |
|||
<![endif]--> |
|||
|
|||
</head> |
|||
<body> |
|||
<div class="wrapper"> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section> |
|||
<h2>Виртуализация на приложения</h2><h2>с Ulteo OVD</h2> |
|||
<img src="assets/ulteo-logo.png"></img> |
|||
<p> <small>Благовест Петров (<a href="http://twitter.com/eniac111" target="_BLANK">@eniac111</a>)</small> </p> |
|||
<p> <small>Бойчо Бойчев</small> </p> |
|||
</section> |
|||
|
|||
<section> |
|||
<h1>Application Delivery?</h1> |
|||
<img src="assets/ovd_arch.png"> </img> |
|||
</section> |
|||
|
|||
<section> |
|||
<p class="fragment" data-fragment-index="1">Хетерогенна среда</p> |
|||
<p class="fragment" data-fragment-index="2">Java и HTML5 клиенти</p> |
|||
<p class="fragment" data-fragment-index="3">Native клиенти Windows и Linux</p> |
|||
<p class="fragment" data-fragment-index="4">Мобилни клиенти за Android и IOS</p> |
|||
<p class="fragment" data-fragment-index="5">Виртуален десктоп, базиран на XFCE или Windows</p> |
|||
<p class="fragment" data-fragment-index="6">Монтиране на локалните принтери и директории</p> |
|||
</section> |
|||
|
|||
<section> |
|||
<p class="fragment" data-fragment-index="1">Интеграция с LDAP, M$ Active Directory, Novell NetWare и локални потребители</p> |
|||
<p class="fragment" data-fragment-index="2">Remote Javascript external API</p> |
|||
<p class="fragment" data-fragment-index="3">OAuth</p> |
|||
<p class="fragment" data-fragment-index="4">Интеграция с OwnCloud и Group Office (CRM)</p> |
|||
<p class="fragment" data-fragment-index="4">Простота на инсталация</p> |
|||
</section> |
|||
|
|||
<section> |
|||
<h1>Компоненти на Ulteo</h1> |
|||
<p class="fragment" data-fragment-index="1">Session Manager</p> |
|||
<p class="fragment" data-fragment-index="2">Application Server</p> |
|||
<p class="fragment" data-fragment-index="3">Web Client</p> |
|||
<p class="fragment" data-fragment-index="4">File Server</p> |
|||
<p class="fragment" data-fragment-index="5">Gateway</p> |
|||
</section> |
|||
|
|||
|
|||
<section> |
|||
<h1>Изцяло <br/>Open Source </br>приложение</h1> |
|||
<p class="fragment" data-fragment-index="1">GNU GPL v2.0</p> |
|||
<p class="fragment" data-fragment-index="2">Premium модулите също са под GPL v2.0</p> |
|||
</section> |
|||
|
|||
<section> |
|||
<p class="fragment" data-fragment-index="1"><h2>В сравнение с други алтернативи?</h2> |
|||
|
|||
<p class="fragment" data-ftagment-index="2">Лиценз за 5 юзъра за Citrix XenAPP = $945</p> |
|||
|
|||
<p class="fragment" data-ftagment-index="2">( <a href="http://tiny.cc/j8xn5w" target="_BLANK">http://tiny.cc/j8xn5w</a> )</p> |
|||
<header> |
|||
|
|||
<p class="fragment" data-ftagment-index="3">Заплащат се единствено лицензите за приложенията и M$ сървъра</p> |
|||
</section> |
|||
<h1>reveal.js</h1> |
|||
<p> |
|||
The HTML Presentation Framework — Site coming soon |
|||
</p> |
|||
|
|||
<section> |
|||
<h3>Приложение на Ulteo OVD в малък и среден бизнес</h3> |
|||
<p class="fragment" data-fragment-index="1">Лесна интеграция в съществуваща вътрешно фирмена ИТ инфраструктура</p> |
|||
<p class="fragment" data-fragment-index="2">Свобода на използване на фирмените приложения</p> |
|||
<p class="fragment" data-fragment-index="3">Свобода на служителите при избора на клиентска операционна система</p> |
|||
<p class="fragment" data-fragment-index="4">Увеличаване на вътрешната сигурност и контрол на данните чрез виртуален потребителски профил</p> |
|||
<p class="fragment" data-fragment-index="5">Ефективно използване на свободния софтуер с отворен код</p> |
|||
<p class="fragment" data-fragment-index="6">Улесняване на работата на служителите от вкъщи</p> |
|||
</section> |
|||
</header> |
|||
|
|||
<section> |
|||
<h3>Преки ползи от използването на Ulteo Open Virtual Desktop (OVD)</h3> |
|||
<p class="fragment" data-fragment-index="1">Намаляване на разходите за софтуерни лицензи</p> |
|||
<p class="fragment" data-fragment-index="2">Улеснение на системната администрация</p> |
|||
<p class="fragment" data-fragment-index="3">Увеличаване на сигурността на вътрешно фирмените данни</p> |
|||
<p class="fragment" data-fragment-index="4">Сертификация по ISO 27000</p> |
|||
</section> |
|||
<footer> |
|||
|
|||
<section> |
|||
<h1> Ulteo? </h1> |
|||
<span class="fragment" data-fragment-index="1"> <img src="assets/gael.jpg"</img></span> |
|||
<p class="fragment" data-fragment-index="2">Gaël Duval<p> |
|||
</section> |
|||
<p> |
|||
<a href="http://lab.hakim.se/reveal-js">Try the demo</a> |
|||
<a href="https://github.com/hakimel/reveal.js/releases">Download</a> |
|||
</p> |
|||
|
|||
<section> |
|||
<img src="assets/mandriva_logo_big.jpg"> </img> |
|||
</section> |
|||
|
|||
<section> |
|||
<h1>Време за тестване?</h1> |
|||
|
|||
<p><a href="https://62.44.97.182/" target="_BLANK">Клик тук!</a></p> |
|||
</section> |
|||
|
|||
<section> |
|||
<h2>Малко Screenshots в случай, че няма време за демо тест :)</h2> |
|||
</section> |
|||
|
|||
<section data-background="assets/screenshot1.png"></section> |
|||
<section data-background="assets/screenshot2.png"></section> |
|||
<section data-background="assets/screenshot3.png"></section> |
|||
<section data-background="assets/screenshot4.png"></section> |
|||
<section data-background="assets/screenshot5.png"></section> |
|||
<section data-background="assets/screenshot6.png"></section> |
|||
|
|||
<section> |
|||
<h1>В Бъдещето..?</h1> |
|||
<p>Хост операционната система ще се предлага безплатно и ще се плаща за технологиите доставящи приложенията</p> |
|||
<p>Десктоп приложенията ще изчезнат. Ще се използват технологии предоставящи отдалечен достъп до приложения></p> |
|||
<p>Ограничено използване на антивирусните програми</p> |
|||
<p>Нов доставчик на услуга – ASP (Application Service Provider)</p> |
|||
</section> |
|||
|
|||
<section> |
|||
Благодаря! |
|||
|
|||
<p>Благовест Петров - <a href="http://petrovs.info" target="_BLANK">http://petrovs.info</a> / blagovest@petrovs.info</p> |
|||
<p>Бойчо Бойчев - boytcho@nebosystems.eu</p> |
|||
|
|||
<p><a href="http://ulteo.com" target="_BLANK">http://ulteo.com</a></p> |
|||
<p> <a href="https://github.com/eniac111/Openfest2013-UlteoOVDPresentation" target="_BLANK">https://github.com/eniac111/Openfest2013-UlteoOVDPresentation</a> </p> |
|||
</section> |
|||
|
|||
|
|||
|
|||
</div> |
|||
</footer> |
|||
|
|||
</div> |
|||
|
|||
<script src="/lib/js/head.min.js"></script> |
|||
<script src="js/reveal.min.js"></script> |
|||
|
|||
<script> |
|||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
|||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), |
|||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) |
|||
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); |
|||
|
|||
Reveal.initialize({ |
|||
transition: 'linear' |
|||
}); |
|||
|
|||
ga('create', 'UA-43375306-1', 'revealjs.com'); |
|||
ga('send', 'pageview'); |
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
|||
</html> |
@ -1,114 +0,0 @@ |
|||
/* |
|||
|
|||
Zenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru> |
|||
based on dark.css by Ivan Sagalaev |
|||
|
|||
*/ |
|||
|
|||
pre code { |
|||
display: block; padding: 0.5em; |
|||
background: #3F3F3F; |
|||
color: #DCDCDC; |
|||
} |
|||
|
|||
pre .keyword, |
|||
pre .tag, |
|||
pre .css .class, |
|||
pre .css .id, |
|||
pre .lisp .title, |
|||
pre .nginx .title, |
|||
pre .request, |
|||
pre .status, |
|||
pre .clojure .attribute { |
|||
color: #E3CEAB; |
|||
} |
|||
|
|||
pre .django .template_tag, |
|||
pre .django .variable, |
|||
pre .django .filter .argument { |
|||
color: #DCDCDC; |
|||
} |
|||
|
|||
pre .number, |
|||
pre .date { |
|||
color: #8CD0D3; |
|||
} |
|||
|
|||
pre .dos .envvar, |
|||
pre .dos .stream, |
|||
pre .variable, |
|||
pre .apache .sqbracket { |
|||
color: #EFDCBC; |
|||
} |
|||
|
|||
pre .dos .flow, |
|||
pre .diff .change, |
|||
pre .python .exception, |
|||
pre .python .built_in, |
|||
pre .literal, |
|||
pre .tex .special { |
|||
color: #EFEFAF; |
|||
} |
|||
|
|||
pre .diff .chunk, |
|||
pre .subst { |
|||
color: #8F8F8F; |
|||
} |
|||
|
|||
pre .dos .keyword, |
|||
pre .python .decorator, |
|||
pre .title, |
|||
pre .haskell .type, |
|||
pre .diff .header, |
|||
pre .ruby .class .parent, |
|||
pre .apache .tag, |
|||
pre .nginx .built_in, |
|||
pre .tex .command, |
|||
pre .prompt { |
|||
color: #efef8f; |
|||
} |
|||
|
|||
pre .dos .winutils, |
|||
pre .ruby .symbol, |
|||
pre .ruby .symbol .string, |
|||
pre .ruby .string { |
|||
color: #DCA3A3; |
|||
} |
|||
|
|||
pre .diff .deletion, |
|||
pre .string, |
|||
pre .tag .value, |
|||
pre .preprocessor, |
|||
pre .built_in, |
|||
pre .sql .aggregate, |
|||
pre .javadoc, |
|||
pre .smalltalk .class, |
|||
pre .smalltalk .localvars, |
|||
pre .smalltalk .array, |
|||
pre .css .rules .value, |
|||
pre .attr_selector, |
|||
pre .pseudo, |
|||
pre .apache .cbracket, |
|||
pre .tex .formula { |
|||
color: #CC9393; |
|||
} |
|||
|
|||
pre .shebang, |
|||
pre .diff .addition, |
|||
pre .comment, |
|||
pre .java .annotation, |
|||
pre .template_comment, |
|||
pre .pi, |
|||
pre .doctype { |
|||
color: #7F9F7F; |
|||
} |
|||
|
|||
pre .coffeescript .javascript, |
|||
pre .javascript .xml, |
|||
pre .tex .formula, |
|||
pre .xml .javascript, |
|||
pre .xml .vbscript, |
|||
pre .xml .css, |
|||
pre .xml .cdata { |
|||
opacity: 0.5; |
|||
} |
Before Width: | Height: | Size: 46 KiB |
@ -1,2 +0,0 @@ |
|||
SIL Open Font License (OFL) |
|||
http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL |
@ -1,2 +0,0 @@ |
|||
/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/ |
|||
if(typeof document!=="undefined"&&!("classList" in document.createElement("a"))){(function(j){var a="classList",f="prototype",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\s+|\s+$/g,"")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===""){throw new n("SYNTAX_ERR","An invalid or illegal string was specified")}if(/\s/.test(o)){throw new n("INVALID_CHARACTER_ERR","String contains an invalid character")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+="";return g(this,o)!==-1};e.add=function(o){o+="";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+="";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+="";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(" ")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))}; |
@ -1,8 +0,0 @@ |
|||
/** |
|||
Head JS The only script in your <HEAD> |
|||
Copyright Tero Piirainen (tipiirai) |
|||
License MIT / http://bit.ly/mit-license
|
|||
Version 0.96 |
|||
|
|||
http://headjs.com
|
|||
*/(function(a){function z(){d||(d=!0,s(e,function(a){p(a)}))}function y(c,d){var e=a.createElement("script");e.type="text/"+(c.type||"javascript"),e.src=c.src||c,e.async=!1,e.onreadystatechange=e.onload=function(){var a=e.readyState;!d.done&&(!a||/loaded|complete/.test(a))&&(d.done=!0,d())},(a.body||b).appendChild(e)}function x(a,b){if(a.state==o)return b&&b();if(a.state==n)return k.ready(a.name,b);if(a.state==m)return a.onpreload.push(function(){x(a,b)});a.state=n,y(a.url,function(){a.state=o,b&&b(),s(g[a.name],function(a){p(a)}),u()&&d&&s(g.ALL,function(a){p(a)})})}function w(a,b){a.state===undefined&&(a.state=m,a.onpreload=[],y({src:a.url,type:"cache"},function(){v(a)}))}function v(a){a.state=l,s(a.onpreload,function(a){a.call()})}function u(a){a=a||h;var b;for(var c in a){if(a.hasOwnProperty(c)&&a[c].state!=o)return!1;b=!0}return b}function t(a){return Object.prototype.toString.call(a)=="[object Function]"}function s(a,b){if(!!a){typeof a=="object"&&(a=[].slice.call(a));for(var c=0;c<a.length;c++)b.call(a,a[c],c)}}function r(a){var b;if(typeof a=="object")for(var c in a)a[c]&&(b={name:c,url:a[c]});else b={name:q(a),url:a};var d=h[b.name];if(d&&d.url===b.url)return d;h[b.name]=b;return b}function q(a){var b=a.split("/"),c=b[b.length-1],d=c.indexOf("?");return d!=-1?c.substring(0,d):c}function p(a){a._done||(a(),a._done=1)}var b=a.documentElement,c,d,e=[],f=[],g={},h={},i=a.createElement("script").async===!0||"MozAppearance"in a.documentElement.style||window.opera,j=window.head_conf&&head_conf.head||"head",k=window[j]=window[j]||function(){k.ready.apply(null,arguments)},l=1,m=2,n=3,o=4;i?k.js=function(){var a=arguments,b=a[a.length-1],c={};t(b)||(b=null),s(a,function(d,e){d!=b&&(d=r(d),c[d.name]=d,x(d,b&&e==a.length-2?function(){u(c)&&p(b)}:null))});return k}:k.js=function(){var a=arguments,b=[].slice.call(a,1),d=b[0];if(!c){f.push(function(){k.js.apply(null,a)});return k}d?(s(b,function(a){t(a)||w(r(a))}),x(r(a[0]),t(d)?d:function(){k.js.apply(null,b)})):x(r(a[0]));return k},k.ready=function(b,c){if(b==a){d?p(c):e.push(c);return k}t(b)&&(c=b,b="ALL");if(typeof b!="string"||!t(c))return k;var f=h[b];if(f&&f.state==o||b=="ALL"&&u()&&d){p(c);return k}var i=g[b];i?i.push(c):i=g[b]=[c];return k},k.ready(a,function(){u()&&s(g.ALL,function(a){p(a)}),k.feature&&k.feature("domloaded",!0)});if(window.addEventListener)a.addEventListener("DOMContentLoaded",z,!1),window.addEventListener("load",z,!1);else if(window.attachEvent){a.attachEvent("onreadystatechange",function(){a.readyState==="complete"&&z()});var A=1;try{A=window.frameElement}catch(B){}!A&&b.doScroll&&function(){try{b.doScroll("left"),z()}catch(a){setTimeout(arguments.callee,1);return}}(),window.attachEvent("onload",z)}!a.readyState&&a.addEventListener&&(a.readyState="loading",a.addEventListener("DOMContentLoaded",handler=function(){a.removeEventListener("DOMContentLoaded",handler,!1),a.readyState="complete"},!1)),setTimeout(function(){c=!0,s(f,function(a){a()})},300)})(document) |
@ -1,7 +0,0 @@ |
|||
document.createElement('header'); |
|||
document.createElement('nav'); |
|||
document.createElement('section'); |
|||
document.createElement('article'); |
|||
document.createElement('aside'); |
|||
document.createElement('footer'); |
|||
document.createElement('hgroup'); |
@ -1,46 +0,0 @@ |
|||
{ |
|||
"name": "reveal.js", |
|||
"version": "2.6.0-dev", |
|||
"description": "The HTML Presentation Framework", |
|||
"homepage": "http://lab.hakim.se/reveal-js", |
|||
"subdomain": "revealjs", |
|||
"scripts": { |
|||
"test": "grunt test", |
|||
"start": "" |
|||
}, |
|||
"author": { |
|||
"name": "Hakim El Hattab", |
|||
"email": "hakim.elhattab@gmail.com", |
|||
"web": "http://hakim.se" |
|||
}, |
|||
"repository": { |
|||
"type": "git", |
|||
"url": "git://github.com/hakimel/reveal.js.git" |
|||
}, |
|||
"engines": { |
|||
"node": "~0.8.0" |
|||
}, |
|||
"dependencies": { |
|||
"underscore": "~1.5.1", |
|||
"express": "~2.5.9", |
|||
"mustache": "~0.7.2", |
|||
"socket.io": "~0.9.13" |
|||
}, |
|||
"devDependencies": { |
|||
"grunt-contrib-qunit": "~0.2.2", |
|||
"grunt-contrib-jshint": "~0.6.4", |
|||
"grunt-contrib-cssmin": "~0.4.1", |
|||
"grunt-contrib-uglify": "~0.2.4", |
|||
"grunt-contrib-watch": "~0.5.3", |
|||
"grunt-contrib-sass": "~0.5.0", |
|||
"grunt-contrib-connect": "~0.4.1", |
|||
"grunt-zip": "~0.7.0", |
|||
"grunt": "~0.4.0" |
|||
}, |
|||
"licenses": [ |
|||
{ |
|||
"type": "MIT", |
|||
"url": "https://github.com/hakimel/reveal.js/blob/master/LICENSE" |
|||
} |
|||
] |
|||
} |
@ -1,98 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Markdown Demo</title> |
|||
|
|||
<link rel="stylesheet" href="../../css/reveal.css"> |
|||
<link rel="stylesheet" href="../../css/theme/default.css" id="theme"> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines --> |
|||
<section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n"></section> |
|||
|
|||
<!-- Slides are separated by three dashes (quick 'n dirty regular expression) --> |
|||
<section data-markdown data-separator="---"> |
|||
<script type="text/template"> |
|||
## Demo 1 |
|||
Slide 1 |
|||
--- |
|||
## Demo 1 |
|||
Slide 2 |
|||
--- |
|||
## Demo 1 |
|||
Slide 3 |
|||
</script> |
|||
</section> |
|||
|
|||
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes --> |
|||
<section data-markdown data-separator="^\n---\n$" data-vertical="^\n--\n$"> |
|||
<script type="text/template"> |
|||
## Demo 2 |
|||
Slide 1.1 |
|||
|
|||
-- |
|||
|
|||
## Demo 2 |
|||
Slide 1.2 |
|||
|
|||
--- |
|||
|
|||
## Demo 2 |
|||
Slide 2 |
|||
</script> |
|||
</section> |
|||
|
|||
<!-- No "extra" slides, since there are no separators defined (so they'll become horizontal rulers) --> |
|||
<section data-markdown> |
|||
<script type="text/template"> |
|||
A |
|||
|
|||
--- |
|||
|
|||
B |
|||
|
|||
--- |
|||
|
|||
C |
|||
</script> |
|||
</section> |
|||
|
|||
</div> |
|||
</div> |
|||
|
|||
<script src="../../lib/js/head.min.js"></script> |
|||
<script src="../../js/reveal.js"></script> |
|||
|
|||
<script> |
|||
|
|||
Reveal.initialize({ |
|||
controls: true, |
|||
progress: true, |
|||
history: true, |
|||
center: true, |
|||
|
|||
theme: Reveal.getQueryHash().theme, |
|||
transition: Reveal.getQueryHash().transition || 'default', |
|||
|
|||
// Optional libraries used to extend on reveal.js |
|||
dependencies: [ |
|||
{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } }, |
|||
{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|||
{ src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
|||
{ src: '../notes/notes.js' } |
|||
] |
|||
}); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,31 +0,0 @@ |
|||
# Markdown Demo |
|||
|
|||
|
|||
|
|||
## External 1.1 |
|||
|
|||
Content 1.1 |
|||
|
|||
Note: This will only appear in the speaker notes window. |
|||
|
|||
|
|||
## External 1.2 |
|||
|
|||
Content 1.2 |
|||
|
|||
|
|||
|
|||
## External 2 |
|||
|
|||
Content 2.1 |
|||
|
|||
|
|||
|
|||
## External 3.1 |
|||
|
|||
Content 3.1 |
|||
|
|||
|
|||
## External 3.2 |
|||
|
|||
Content 3.2 |
@ -1,320 +0,0 @@ |
|||
/** |
|||
* The reveal.js markdown plugin. Handles parsing of |
|||
* markdown inside of presentations as well as loading |
|||
* of external markdown documents. |
|||
*/ |
|||
(function( root, factory ) { |
|||
if( typeof exports === 'object' ) { |
|||
module.exports = factory( require( './marked' ) ); |
|||
} |
|||
else { |
|||
// Browser globals (root is window)
|
|||
root.RevealMarkdown = factory( root.marked ); |
|||
root.RevealMarkdown.initialize(); |
|||
} |
|||
}( this, function( marked ) { |
|||
|
|||
if( typeof marked === 'undefined' ) { |
|||
throw 'The reveal.js Markdown plugin requires marked to be loaded'; |
|||
} |
|||
|
|||
if( typeof hljs !== 'undefined' ) { |
|||
marked.setOptions({ |
|||
highlight: function( lang, code ) { |
|||
return hljs.highlightAuto( lang, code ).value; |
|||
} |
|||
}); |
|||
} |
|||
|
|||
var DEFAULT_SLIDE_SEPARATOR = '^\n---\n$', |
|||
DEFAULT_NOTES_SEPARATOR = 'note:'; |
|||
|
|||
|
|||
/** |
|||
* Retrieves the markdown contents of a slide section |
|||
* element. Normalizes leading tabs/whitespace. |
|||
*/ |
|||
function getMarkdownFromSlide( section ) { |
|||
|
|||
var template = section.querySelector( 'script' ); |
|||
|
|||
// strip leading whitespace so it isn't evaluated as code
|
|||
var text = ( template || section ).textContent; |
|||
|
|||
var leadingWs = text.match( /^\n?(\s*)/ )[1].length, |
|||
leadingTabs = text.match( /^\n?(\t*)/ )[1].length; |
|||
|
|||
if( leadingTabs > 0 ) { |
|||
text = text.replace( new RegExp('\\n?\\t{' + leadingTabs + '}','g'), '\n' ); |
|||
} |
|||
else if( leadingWs > 1 ) { |
|||
text = text.replace( new RegExp('\\n? {' + leadingWs + '}','g'), '\n' ); |
|||
} |
|||
|
|||
return text; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Given a markdown slide section element, this will |
|||
* return all arguments that aren't related to markdown |
|||
* parsing. Used to forward any other user-defined arguments |
|||
* to the output markdown slide. |
|||
*/ |
|||
function getForwardedAttributes( section ) { |
|||
|
|||
var attributes = section.attributes; |
|||
var result = []; |
|||
|
|||
for( var i = 0, len = attributes.length; i < len; i++ ) { |
|||
var name = attributes[i].name, |
|||
value = attributes[i].value; |
|||
|
|||
// disregard attributes that are used for markdown loading/parsing
|
|||
if( /data\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue; |
|||
|
|||
if( value ) { |
|||
result.push( name + '=' + value ); |
|||
} |
|||
else { |
|||
result.push( name ); |
|||
} |
|||
} |
|||
|
|||
return result.join( ' ' ); |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Inspects the given options and fills out default |
|||
* values for what's not defined. |
|||
*/ |
|||
function getSlidifyOptions( options ) { |
|||
|
|||
options = options || {}; |
|||
options.separator = options.separator || DEFAULT_SLIDE_SEPARATOR; |
|||
options.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR; |
|||
options.attributes = options.attributes || ''; |
|||
|
|||
return options; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Helper function for constructing a markdown slide. |
|||
*/ |
|||
function createMarkdownSlide( content, options ) { |
|||
|
|||
options = getSlidifyOptions( options ); |
|||
|
|||
var notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) ); |
|||
|
|||
if( notesMatch.length === 2 ) { |
|||
content = notesMatch[0] + '<aside class="notes" data-markdown>' + notesMatch[1].trim() + '</aside>'; |
|||
} |
|||
|
|||
return '<script type="text/template">' + content + '</script>'; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Parses a data string into multiple slides based |
|||
* on the passed in separator arguments. |
|||
*/ |
|||
function slidify( markdown, options ) { |
|||
|
|||
options = getSlidifyOptions( options ); |
|||
|
|||
var separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ), |
|||
horizontalSeparatorRegex = new RegExp( options.separator ); |
|||
|
|||
var matches, |
|||
lastIndex = 0, |
|||
isHorizontal, |
|||
wasHorizontal = true, |
|||
content, |
|||
sectionStack = []; |
|||
|
|||
// iterate until all blocks between separators are stacked up
|
|||
while( matches = separatorRegex.exec( markdown ) ) { |
|||
notes = null; |
|||
|
|||
// determine direction (horizontal by default)
|
|||
isHorizontal = horizontalSeparatorRegex.test( matches[0] ); |
|||
|
|||
if( !isHorizontal && wasHorizontal ) { |
|||
// create vertical stack
|
|||
sectionStack.push( [] ); |
|||
} |
|||
|
|||
// pluck slide content from markdown input
|
|||
content = markdown.substring( lastIndex, matches.index ); |
|||
|
|||
if( isHorizontal && wasHorizontal ) { |
|||
// add to horizontal stack
|
|||
sectionStack.push( content ); |
|||
} |
|||
else { |
|||
// add to vertical stack
|
|||
sectionStack[sectionStack.length-1].push( content ); |
|||
} |
|||
|
|||
lastIndex = separatorRegex.lastIndex; |
|||
wasHorizontal = isHorizontal; |
|||
} |
|||
|
|||
// add the remaining slide
|
|||
( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) ); |
|||
|
|||
var markdownSections = ''; |
|||
|
|||
// flatten the hierarchical stack, and insert <section data-markdown> tags
|
|||
for( var i = 0, len = sectionStack.length; i < len; i++ ) { |
|||
// vertical
|
|||
if( sectionStack[i].propertyIsEnumerable( length ) && typeof sectionStack[i].splice === 'function' ) { |
|||
markdownSections += '<section '+ options.attributes +'>'; |
|||
|
|||
sectionStack[i].forEach( function( child ) { |
|||
markdownSections += '<section data-markdown>' + createMarkdownSlide( child, options ) + '</section>'; |
|||
} ); |
|||
|
|||
markdownSections += '</section>'; |
|||
} |
|||
else { |
|||
markdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>'; |
|||
} |
|||
} |
|||
|
|||
return markdownSections; |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Parses any current data-markdown slides, splits |
|||
* multi-slide markdown into separate sections and |
|||
* handles loading of external markdown. |
|||
*/ |
|||
function processSlides() { |
|||
|
|||
var sections = document.querySelectorAll( '[data-markdown]'), |
|||
section; |
|||
|
|||
for( var i = 0, len = sections.length; i < len; i++ ) { |
|||
|
|||
section = sections[i]; |
|||
|
|||
if( section.getAttribute( 'data-markdown' ).length ) { |
|||
|
|||
var xhr = new XMLHttpRequest(), |
|||
url = section.getAttribute( 'data-markdown' ); |
|||
|
|||
datacharset = section.getAttribute( 'data-charset' ); |
|||
|
|||
// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes
|
|||
if( datacharset != null && datacharset != '' ) { |
|||
xhr.overrideMimeType( 'text/html; charset=' + datacharset ); |
|||
} |
|||
|
|||
xhr.onreadystatechange = function() { |
|||
if( xhr.readyState === 4 ) { |
|||
if ( xhr.status >= 200 && xhr.status < 300 ) { |
|||
|
|||
section.outerHTML = slidify( xhr.responseText, { |
|||
separator: section.getAttribute( 'data-separator' ), |
|||
verticalSeparator: section.getAttribute( 'data-vertical' ), |
|||
notesSeparator: section.getAttribute( 'data-notes' ), |
|||
attributes: getForwardedAttributes( section ) |
|||
}); |
|||
|
|||
} |
|||
else { |
|||
|
|||
section.outerHTML = '<section data-state="alert">' + |
|||
'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' + |
|||
'Check your browser\'s JavaScript console for more details.' + |
|||
'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' + |
|||
'</section>'; |
|||
|
|||
} |
|||
} |
|||
}; |
|||
|
|||
xhr.open( 'GET', url, false ); |
|||
|
|||
try { |
|||
xhr.send(); |
|||
} |
|||
catch ( e ) { |
|||
alert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e ); |
|||
} |
|||
|
|||
} |
|||
else if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-vertical' ) || section.getAttribute( 'data-notes' ) ) { |
|||
|
|||
section.outerHTML = slidify( getMarkdownFromSlide( section ), { |
|||
separator: section.getAttribute( 'data-separator' ), |
|||
verticalSeparator: section.getAttribute( 'data-vertical' ), |
|||
notesSeparator: section.getAttribute( 'data-notes' ), |
|||
attributes: getForwardedAttributes( section ) |
|||
}); |
|||
|
|||
} |
|||
else { |
|||
|
|||
section.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) ); |
|||
|
|||
} |
|||
} |
|||
|
|||
} |
|||
|
|||
/** |
|||
* Converts any current data-markdown slides in the |
|||
* DOM to HTML. |
|||
*/ |
|||
function convertSlides() { |
|||
|
|||
var sections = document.querySelectorAll( '[data-markdown]'); |
|||
|
|||
for( var i = 0, len = sections.length; i < len; i++ ) { |
|||
|
|||
var section = sections[i]; |
|||
|
|||
// Only parse the same slide once
|
|||
if( !section.getAttribute( 'data-markdown-parsed' ) ) { |
|||
|
|||
section.setAttribute( 'data-markdown-parsed', true ) |
|||
|
|||
var notes = section.querySelector( 'aside.notes' ); |
|||
var markdown = getMarkdownFromSlide( section ); |
|||
|
|||
section.innerHTML = marked( markdown ); |
|||
|
|||
// If there were notes, we need to re-add them after
|
|||
// having overwritten the section's HTML
|
|||
if( notes ) { |
|||
section.appendChild( notes ); |
|||
} |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
} |
|||
|
|||
// API
|
|||
return { |
|||
|
|||
initialize: function() { |
|||
processSlides(); |
|||
convertSlides(); |
|||
}, |
|||
|
|||
// TODO: Do these belong in the API?
|
|||
processSlides: processSlides, |
|||
convertSlides: convertSlides, |
|||
slidify: slidify |
|||
|
|||
}; |
|||
|
|||
})); |
@ -1,37 +0,0 @@ |
|||
/** |
|||
* marked - a markdown parser |
|||
* Copyright (c) 2011-2013, Christopher Jeffrey. (MIT Licensed) |
|||
* https://github.com/chjj/marked
|
|||
*/ |
|||
|
|||
(function(){var block={newline:/^\n+/,code:/^( {4}[^\n]+\n*)+/,fences:noop,hr:/^( *[-*_]){3,} *(?:\n+|$)/,heading:/^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,nptable:noop,lheading:/^([^\n]+)\n *(=|-){3,} *\n*/,blockquote:/^( *>[^\n]+(\n[^\n]+)*\n*)+/,list:/^( *)(bull) [\s\S]+?(?:hr|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,html:/^ *(?:comment|closed|closing) *(?:\n{2,}|\s*$)/,def:/^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,table:noop,paragraph:/^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/, |
|||
text:/^[^\n]+/};block.bullet=/(?:[*+-]|\d+\.)/;block.item=/^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;block.item=replace(block.item,"gm")(/bull/g,block.bullet)();block.list=replace(block.list)(/bull/g,block.bullet)("hr",/\n+(?=(?: *[-*_]){3,} *(?:\n+|$))/)();block._tag="(?!(?:"+"a|em|strong|small|s|cite|q|dfn|abbr|data|time|code"+"|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo"+"|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|@)\\b";block.html=replace(block.html)("comment",/\x3c!--[\s\S]*?--\x3e/)("closed", |
|||
/<(tag)[\s\S]+?<\/\1>/)("closing",/<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)(/tag/g,block._tag)();block.paragraph=replace(block.paragraph)("hr",block.hr)("heading",block.heading)("lheading",block.lheading)("blockquote",block.blockquote)("tag","<"+block._tag)("def",block.def)();block.normal=merge({},block);block.gfm=merge({},block.normal,{fences:/^ *(`{3,}|~{3,}) *(\S+)? *\n([\s\S]+?)\s*\1 *(?:\n+|$)/,paragraph:/^/});block.gfm.paragraph=replace(block.paragraph)("(?!","(?!"+block.gfm.fences.source.replace("\\1", |
|||
"\\2")+"|")();block.tables=merge({},block.gfm,{nptable:/^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,table:/^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/});function Lexer(options){this.tokens=[];this.tokens.links={};this.options=options||marked.defaults;this.rules=block.normal;if(this.options.gfm)if(this.options.tables)this.rules=block.tables;else this.rules=block.gfm}Lexer.rules=block;Lexer.lex=function(src,options){var lexer=new Lexer(options);return lexer.lex(src)}; |
|||
Lexer.prototype.lex=function(src){src=src.replace(/\r\n|\r/g,"\n").replace(/\t/g," ").replace(/\u00a0/g," ").replace(/\u2424/g,"\n");return this.token(src,true)};Lexer.prototype.token=function(src,top){var src=src.replace(/^ +$/gm,""),next,loose,cap,bull,b,item,space,i,l;while(src){if(cap=this.rules.newline.exec(src)){src=src.substring(cap[0].length);if(cap[0].length>1)this.tokens.push({type:"space"})}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);cap=cap[0].replace(/^ {4}/gm, |
|||
"");this.tokens.push({type:"code",text:!this.options.pedantic?cap.replace(/\n+$/,""):cap});continue}if(cap=this.rules.fences.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"code",lang:cap[2],text:cap[3]});continue}if(cap=this.rules.heading.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[1].length,text:cap[2]});continue}if(top&&(cap=this.rules.nptable.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g, |
|||
"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]="center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].split(/ *\| */);this.tokens.push(item);continue}if(cap=this.rules.lheading.exec(src)){src= |
|||
src.substring(cap[0].length);this.tokens.push({type:"heading",depth:cap[2]==="="?1:2,text:cap[1]});continue}if(cap=this.rules.hr.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"hr"});continue}if(cap=this.rules.blockquote.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"blockquote_start"});cap=cap[0].replace(/^ *> ?/gm,"");this.token(cap,top);this.tokens.push({type:"blockquote_end"});continue}if(cap=this.rules.list.exec(src)){src=src.substring(cap[0].length); |
|||
bull=cap[2];this.tokens.push({type:"list_start",ordered:bull.length>1});cap=cap[0].match(this.rules.item);next=false;l=cap.length;i=0;for(;i<l;i++){item=cap[i];space=item.length;item=item.replace(/^ *([*+-]|\d+\.) +/,"");if(~item.indexOf("\n ")){space-=item.length;item=!this.options.pedantic?item.replace(new RegExp("^ {1,"+space+"}","gm"),""):item.replace(/^ {1,4}/gm,"")}if(this.options.smartLists&&i!==l-1){b=block.bullet.exec(cap[i+1])[0];if(bull!==b&&!(bull.length>1&&b.length>1)){src=cap.slice(i+ |
|||
1).join("\n")+src;i=l-1}}loose=next||/\n\n(?!\s*$)/.test(item);if(i!==l-1){next=item[item.length-1]==="\n";if(!loose)loose=next}this.tokens.push({type:loose?"loose_item_start":"list_item_start"});this.token(item,false);this.tokens.push({type:"list_item_end"})}this.tokens.push({type:"list_end"});continue}if(cap=this.rules.html.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:this.options.sanitize?"paragraph":"html",pre:cap[1]==="pre"||cap[1]==="script",text:cap[0]});continue}if(top&& |
|||
(cap=this.rules.def.exec(src))){src=src.substring(cap[0].length);this.tokens.links[cap[1].toLowerCase()]={href:cap[2],title:cap[3]};continue}if(top&&(cap=this.rules.table.exec(src))){src=src.substring(cap[0].length);item={type:"table",header:cap[1].replace(/^ *| *\| *$/g,"").split(/ *\| */),align:cap[2].replace(/^ *|\| *$/g,"").split(/ *\| */),cells:cap[3].replace(/(?: *\| *)?\n$/,"").split("\n")};for(i=0;i<item.align.length;i++)if(/^ *-+: *$/.test(item.align[i]))item.align[i]="right";else if(/^ *:-+: *$/.test(item.align[i]))item.align[i]= |
|||
"center";else if(/^ *:-+ *$/.test(item.align[i]))item.align[i]="left";else item.align[i]=null;for(i=0;i<item.cells.length;i++)item.cells[i]=item.cells[i].replace(/^ *\| *| *\| *$/g,"").split(/ *\| */);this.tokens.push(item);continue}if(top&&(cap=this.rules.paragraph.exec(src))){src=src.substring(cap[0].length);this.tokens.push({type:"paragraph",text:cap[1][cap[1].length-1]==="\n"?cap[1].slice(0,-1):cap[1]});continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);this.tokens.push({type:"text", |
|||
text:cap[0]});continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return this.tokens};var inline={escape:/^\\([\\`*{}\[\]()#+\-.!_>])/,autolink:/^<([^ >]+(@|:\/)[^ >]+)>/,url:noop,tag:/^\x3c!--[\s\S]*?--\x3e|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,link:/^!?\[(inside)\]\(href\)/,reflink:/^!?\[(inside)\]\s*\[([^\]]*)\]/,nolink:/^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,strong:/^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,em:/^\b_((?:__|[\s\S])+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/, |
|||
code:/^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,br:/^ {2,}\n(?!\s*$)/,del:noop,text:/^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/};inline._inside=/(?:\[[^\]]*\]|[^\]]|\](?=[^\[]*\]))*/;inline._href=/\s*<?([^\s]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;inline.link=replace(inline.link)("inside",inline._inside)("href",inline._href)();inline.reflink=replace(inline.reflink)("inside",inline._inside)();inline.normal=merge({},inline);inline.pedantic=merge({},inline.normal,{strong:/^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/, |
|||
em:/^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/});inline.gfm=merge({},inline.normal,{escape:replace(inline.escape)("])","~|])")(),url:/^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,del:/^~~(?=\S)([\s\S]*?\S)~~/,text:replace(inline.text)("]|","~]|")("|","|https?://|")()});inline.breaks=merge({},inline.gfm,{br:replace(inline.br)("{2,}","*")(),text:replace(inline.gfm.text)("{2,}","*")()});function InlineLexer(links,options){this.options=options||marked.defaults;this.links=links;this.rules=inline.normal; |
|||
if(!this.links)throw new Error("Tokens array requires a `links` property.");if(this.options.gfm)if(this.options.breaks)this.rules=inline.breaks;else this.rules=inline.gfm;else if(this.options.pedantic)this.rules=inline.pedantic}InlineLexer.rules=inline;InlineLexer.output=function(src,links,options){var inline=new InlineLexer(links,options);return inline.output(src)};InlineLexer.prototype.output=function(src){var out="",link,text,href,cap;while(src){if(cap=this.rules.escape.exec(src)){src=src.substring(cap[0].length); |
|||
out+=cap[1];continue}if(cap=this.rules.autolink.exec(src)){src=src.substring(cap[0].length);if(cap[2]==="@"){text=cap[1][6]===":"?this.mangle(cap[1].substring(7)):this.mangle(cap[1]);href=this.mangle("mailto:")+text}else{text=escape(cap[1]);href=text}out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.url.exec(src)){src=src.substring(cap[0].length);text=escape(cap[1]);href=text;out+='<a href="'+href+'">'+text+"</a>";continue}if(cap=this.rules.tag.exec(src)){src=src.substring(cap[0].length); |
|||
out+=this.options.sanitize?escape(cap[0]):cap[0];continue}if(cap=this.rules.link.exec(src)){src=src.substring(cap[0].length);out+=this.outputLink(cap,{href:cap[2],title:cap[3]});continue}if((cap=this.rules.reflink.exec(src))||(cap=this.rules.nolink.exec(src))){src=src.substring(cap[0].length);link=(cap[2]||cap[1]).replace(/\s+/g," ");link=this.links[link.toLowerCase()];if(!link||!link.href){out+=cap[0][0];src=cap[0].substring(1)+src;continue}out+=this.outputLink(cap,link);continue}if(cap=this.rules.strong.exec(src)){src= |
|||
src.substring(cap[0].length);out+="<strong>"+this.output(cap[2]||cap[1])+"</strong>";continue}if(cap=this.rules.em.exec(src)){src=src.substring(cap[0].length);out+="<em>"+this.output(cap[2]||cap[1])+"</em>";continue}if(cap=this.rules.code.exec(src)){src=src.substring(cap[0].length);out+="<code>"+escape(cap[2],true)+"</code>";continue}if(cap=this.rules.br.exec(src)){src=src.substring(cap[0].length);out+="<br>";continue}if(cap=this.rules.del.exec(src)){src=src.substring(cap[0].length);out+="<del>"+ |
|||
this.output(cap[1])+"</del>";continue}if(cap=this.rules.text.exec(src)){src=src.substring(cap[0].length);out+=escape(cap[0]);continue}if(src)throw new Error("Infinite loop on byte: "+src.charCodeAt(0));}return out};InlineLexer.prototype.outputLink=function(cap,link){if(cap[0][0]!=="!")return'<a href="'+escape(link.href)+'"'+(link.title?' title="'+escape(link.title)+'"':"")+">"+this.output(cap[1])+"</a>";else return'<img src="'+escape(link.href)+'" alt="'+escape(cap[1])+'"'+(link.title?' title="'+ |
|||
escape(link.title)+'"':"")+">"};InlineLexer.prototype.smartypants=function(text){if(!this.options.smartypants)return text;return text.replace(/--/g,"\u2014").replace(/'([^']*)'/g,"\u2018$1\u2019").replace(/"([^"]*)"/g,"\u201c$1\u201d").replace(/\.{3}/g,"\u2026")};InlineLexer.prototype.mangle=function(text){var out="",l=text.length,i=0,ch;for(;i<l;i++){ch=text.charCodeAt(i);if(Math.random()>0.5)ch="x"+ch.toString(16);out+="&#"+ch+";"}return out};function Parser(options){this.tokens=[];this.token=null; |
|||
this.options=options||marked.defaults}Parser.parse=function(src,options){var parser=new Parser(options);return parser.parse(src)};Parser.prototype.parse=function(src){this.inline=new InlineLexer(src.links,this.options);this.tokens=src.reverse();var out="";while(this.next())out+=this.tok();return out};Parser.prototype.next=function(){return this.token=this.tokens.pop()};Parser.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0};Parser.prototype.parseText=function(){var body=this.token.text; |
|||
while(this.peek().type==="text")body+="\n"+this.next().text;return this.inline.output(body)};Parser.prototype.tok=function(){switch(this.token.type){case "space":return"";case "hr":return"<hr>\n";case "heading":return"<h"+this.token.depth+">"+this.inline.output(this.token.text)+"</h"+this.token.depth+">\n";case "code":if(this.options.highlight){var code=this.options.highlight(this.token.text,this.token.lang);if(code!=null&&code!==this.token.text){this.token.escaped=true;this.token.text=code}}if(!this.token.escaped)this.token.text= |
|||
escape(this.token.text,true);return"<pre><code"+(this.token.lang?' class="'+this.options.langPrefix+this.token.lang+'"':"")+">"+this.token.text+"</code></pre>\n";case "table":var body="",heading,i,row,cell,j;body+="<thead>\n<tr>\n";for(i=0;i<this.token.header.length;i++){heading=this.inline.output(this.token.header[i]);body+=this.token.align[i]?'<th align="'+this.token.align[i]+'">'+heading+"</th>\n":"<th>"+heading+"</th>\n"}body+="</tr>\n</thead>\n";body+="<tbody>\n";for(i=0;i<this.token.cells.length;i++){row= |
|||
this.token.cells[i];body+="<tr>\n";for(j=0;j<row.length;j++){cell=this.inline.output(row[j]);body+=this.token.align[j]?'<td align="'+this.token.align[j]+'">'+cell+"</td>\n":"<td>"+cell+"</td>\n"}body+="</tr>\n"}body+="</tbody>\n";return"<table>\n"+body+"</table>\n";case "blockquote_start":var body="";while(this.next().type!=="blockquote_end")body+=this.tok();return"<blockquote>\n"+body+"</blockquote>\n";case "list_start":var type=this.token.ordered?"ol":"ul",body="";while(this.next().type!=="list_end")body+= |
|||
this.tok();return"<"+type+">\n"+body+"</"+type+">\n";case "list_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.token.type==="text"?this.parseText():this.tok();return"<li>"+body+"</li>\n";case "loose_item_start":var body="";while(this.next().type!=="list_item_end")body+=this.tok();return"<li>"+body+"</li>\n";case "html":return!this.token.pre&&!this.options.pedantic?this.inline.output(this.token.text):this.token.text;case "paragraph":return"<p>"+this.inline.output(this.token.text)+ |
|||
"</p>\n";case "text":return"<p>"+this.parseText()+"</p>\n"}};function escape(html,encode){return html.replace(!encode?/&(?!#?\w+;)/g:/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,""").replace(/'/g,"'")}function replace(regex,opt){regex=regex.source;opt=opt||"";return function self(name,val){if(!name)return new RegExp(regex,opt);val=val.source||val;val=val.replace(/(^|[^\[])\^/g,"$1");regex=regex.replace(name,val);return self}}function noop(){}noop.exec=noop;function merge(obj){var i= |
|||
1,target,key;for(;i<arguments.length;i++){target=arguments[i];for(key in target)if(Object.prototype.hasOwnProperty.call(target,key))obj[key]=target[key]}return obj}function marked(src,opt,callback){if(callback||typeof opt==="function"){if(!callback){callback=opt;opt=null}if(opt)opt=merge({},marked.defaults,opt);var tokens=Lexer.lex(tokens,opt),highlight=opt.highlight,pending=0,l=tokens.length,i=0;if(!highlight||highlight.length<3)return callback(null,Parser.parse(tokens,opt));var done=function(){delete opt.highlight; |
|||
var out=Parser.parse(tokens,opt);opt.highlight=highlight;return callback(null,out)};for(;i<l;i++)(function(token){if(token.type!=="code")return;pending++;return highlight(token.text,token.lang,function(err,code){if(code==null||code===token.text)return--pending||done();token.text=code;token.escaped=true;--pending||done()})})(tokens[i]);return}try{if(opt)opt=merge({},marked.defaults,opt);return Parser.parse(Lexer.lex(src,opt),opt)}catch(e){e.message+="\nPlease report this to https://github.com/chjj/marked."; |
|||
if((opt||marked.defaults).silent)return"<p>An error occured:</p><pre>"+escape(e.message+"",true)+"</pre>";throw e;}}marked.options=marked.setOptions=function(opt){merge(marked.defaults,opt);return marked};marked.defaults={gfm:true,tables:true,breaks:false,pedantic:false,sanitize:false,smartLists:false,silent:false,highlight:null,langPrefix:""};marked.Parser=Parser;marked.parser=Parser.parse;marked.Lexer=Lexer;marked.lexer=Lexer.lex;marked.InlineLexer=InlineLexer;marked.inlineLexer=InlineLexer.output; |
|||
marked.parse=marked;if(typeof exports==="object")module.exports=marked;else if(typeof define==="function"&&define.amd)define(function(){return marked});else this.marked=marked}).call(function(){return this||(typeof window!=="undefined"?window:global)}()); |
@ -1,64 +0,0 @@ |
|||
/** |
|||
* A plugin which enables rendering of math equations inside |
|||
* of reveal.js slides. Essentially a thin wrapper for MathJax. |
|||
* |
|||
* @author Hakim El Hattab |
|||
*/ |
|||
var RevealMath = window.RevealMath || (function(){ |
|||
|
|||
var options = Reveal.getConfig().math || {}; |
|||
options.mathjax = options.mathjax || 'http://cdn.mathjax.org/mathjax/latest/MathJax.js'; |
|||
options.config = options.config || 'TeX-AMS_HTML-full'; |
|||
|
|||
loadScript( options.mathjax + '?config=' + options.config, function() { |
|||
|
|||
MathJax.Hub.Config({ |
|||
messageStyle: 'none', |
|||
tex2jax: { inlineMath: [['$','$'],['\\(','\\)']] }, |
|||
skipStartupTypeset: true |
|||
}); |
|||
|
|||
// Typeset followed by an immediate reveal.js layout since
|
|||
// the typesetting process could affect slide height
|
|||
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] ); |
|||
MathJax.Hub.Queue( Reveal.layout ); |
|||
|
|||
// Reprocess equations in slides when they turn visible
|
|||
Reveal.addEventListener( 'slidechanged', function( event ) { |
|||
|
|||
MathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] ); |
|||
|
|||
} ); |
|||
|
|||
} ); |
|||
|
|||
function loadScript( url, callback ) { |
|||
|
|||
var head = document.querySelector( 'head' ); |
|||
var script = document.createElement( 'script' ); |
|||
script.type = 'text/javascript'; |
|||
script.src = url; |
|||
|
|||
// Wrapper for callback to make sure it only fires once
|
|||
var finish = function() { |
|||
if( typeof callback === 'function' ) { |
|||
callback.call(); |
|||
callback = null; |
|||
} |
|||
} |
|||
|
|||
script.onload = finish; |
|||
|
|||
// IE
|
|||
script.onreadystatechange = function() { |
|||
if ( this.readyState === 'loaded' ) { |
|||
finish(); |
|||
} |
|||
} |
|||
|
|||
// Normal browsers
|
|||
head.appendChild( script ); |
|||
|
|||
} |
|||
|
|||
})(); |
@ -1,13 +0,0 @@ |
|||
(function() { |
|||
var multiplex = Reveal.getConfig().multiplex; |
|||
var socketId = multiplex.id; |
|||
var socket = io.connect(multiplex.url); |
|||
|
|||
socket.on(multiplex.id, function(data) { |
|||
// ignore data from sockets that aren't ours
|
|||
if (data.socketId !== socketId) { return; } |
|||
if( window.location.host === 'localhost:1947' ) return; |
|||
|
|||
Reveal.slide(data.indexh, data.indexv, data.indexf, 'remote'); |
|||
}); |
|||
}()); |
@ -1,56 +0,0 @@ |
|||
var express = require('express'); |
|||
var fs = require('fs'); |
|||
var io = require('socket.io'); |
|||
var crypto = require('crypto'); |
|||
|
|||
var app = express.createServer(); |
|||
var staticDir = express.static; |
|||
|
|||
io = io.listen(app); |
|||
|
|||
var opts = { |
|||
port: 1948, |
|||
baseDir : __dirname + '/../../' |
|||
}; |
|||
|
|||
io.sockets.on('connection', function(socket) { |
|||
socket.on('slidechanged', function(slideData) { |
|||
if (typeof slideData.secret == 'undefined' || slideData.secret == null || slideData.secret === '') return; |
|||
if (createHash(slideData.secret) === slideData.socketId) { |
|||
slideData.secret = null; |
|||
socket.broadcast.emit(slideData.socketId, slideData); |
|||
}; |
|||
}); |
|||
}); |
|||
|
|||
app.configure(function() { |
|||
[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) { |
|||
app.use('/' + dir, staticDir(opts.baseDir + dir)); |
|||
}); |
|||
}); |
|||
|
|||
app.get("/", function(req, res) { |
|||
res.writeHead(200, {'Content-Type': 'text/html'}); |
|||
fs.createReadStream(opts.baseDir + '/index.html').pipe(res); |
|||
}); |
|||
|
|||
app.get("/token", function(req,res) { |
|||
var ts = new Date().getTime(); |
|||
var rand = Math.floor(Math.random()*9999999); |
|||
var secret = ts.toString() + rand.toString(); |
|||
res.send({secret: secret, socketId: createHash(secret)}); |
|||
}); |
|||
|
|||
var createHash = function(secret) { |
|||
var cipher = crypto.createCipher('blowfish', secret); |
|||
return(cipher.final('hex')); |
|||
}; |
|||
|
|||
// Actually listen
|
|||
app.listen(opts.port || null); |
|||
|
|||
var brown = '\033[33m', |
|||
green = '\033[32m', |
|||
reset = '\033[0m'; |
|||
|
|||
console.log( brown + "reveal.js:" + reset + " Multiplex running on port " + green + opts.port + reset ); |
@ -1,51 +0,0 @@ |
|||
(function() { |
|||
// Don't emit events from inside of notes windows
|
|||
if ( window.location.search.match( /receiver/gi ) ) { return; } |
|||
|
|||
var multiplex = Reveal.getConfig().multiplex; |
|||
|
|||
var socket = io.connect(multiplex.url); |
|||
|
|||
var notify = function( slideElement, indexh, indexv, origin ) { |
|||
if( typeof origin === 'undefined' && origin !== 'remote' ) { |
|||
var nextindexh; |
|||
var nextindexv; |
|||
|
|||
var fragmentindex = Reveal.getIndices().f; |
|||
if (typeof fragmentindex == 'undefined') { |
|||
fragmentindex = 0; |
|||
} |
|||
|
|||
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') { |
|||
nextindexh = indexh; |
|||
nextindexv = indexv + 1; |
|||
} else { |
|||
nextindexh = indexh + 1; |
|||
nextindexv = 0; |
|||
} |
|||
|
|||
var slideData = { |
|||
indexh : indexh, |
|||
indexv : indexv, |
|||
indexf : fragmentindex, |
|||
nextindexh : nextindexh, |
|||
nextindexv : nextindexv, |
|||
secret: multiplex.secret, |
|||
socketId : multiplex.id |
|||
}; |
|||
|
|||
socket.emit('slidechanged', slideData); |
|||
} |
|||
} |
|||
|
|||
Reveal.addEventListener( 'slidechanged', function( event ) { |
|||
notify( event.currentSlide, event.indexh, event.indexv, event.origin ); |
|||
} ); |
|||
|
|||
var fragmentNotify = function( event ) { |
|||
notify( Reveal.getCurrentSlide(), Reveal.getIndices().h, Reveal.getIndices().v, event.origin ); |
|||
}; |
|||
|
|||
Reveal.addEventListener( 'fragmentshown', fragmentNotify ); |
|||
Reveal.addEventListener( 'fragmenthidden', fragmentNotify ); |
|||
}()); |
@ -1,57 +0,0 @@ |
|||
(function() { |
|||
// don't emit events from inside the previews themselves
|
|||
if ( window.location.search.match( /receiver/gi ) ) { return; } |
|||
|
|||
var socket = io.connect(window.location.origin); |
|||
var socketId = Math.random().toString().slice(2); |
|||
|
|||
console.log('View slide notes at ' + window.location.origin + '/notes/' + socketId); |
|||
window.open(window.location.origin + '/notes/' + socketId, 'notes-' + socketId); |
|||
|
|||
// Fires when a fragment is shown
|
|||
Reveal.addEventListener( 'fragmentshown', function( event ) { |
|||
var fragmentData = { |
|||
fragment : 'next', |
|||
socketId : socketId |
|||
}; |
|||
socket.emit('fragmentchanged', fragmentData); |
|||
} ); |
|||
|
|||
// Fires when a fragment is hidden
|
|||
Reveal.addEventListener( 'fragmenthidden', function( event ) { |
|||
var fragmentData = { |
|||
fragment : 'previous', |
|||
socketId : socketId |
|||
}; |
|||
socket.emit('fragmentchanged', fragmentData); |
|||
} ); |
|||
|
|||
// Fires when slide is changed
|
|||
Reveal.addEventListener( 'slidechanged', function( event ) { |
|||
var nextindexh; |
|||
var nextindexv; |
|||
var slideElement = event.currentSlide; |
|||
|
|||
if (slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION') { |
|||
nextindexh = event.indexh; |
|||
nextindexv = event.indexv + 1; |
|||
} else { |
|||
nextindexh = event.indexh + 1; |
|||
nextindexv = 0; |
|||
} |
|||
|
|||
var notes = slideElement.querySelector('aside.notes'); |
|||
var slideData = { |
|||
notes : notes ? notes.innerHTML : '', |
|||
indexh : event.indexh, |
|||
indexv : event.indexv, |
|||
nextindexh : nextindexh, |
|||
nextindexv : nextindexv, |
|||
socketId : socketId, |
|||
markdown : notes ? typeof notes.getAttribute('data-markdown') === 'string' : false |
|||
|
|||
}; |
|||
|
|||
socket.emit('slidechanged', slideData); |
|||
} ); |
|||
}()); |
@ -1,59 +0,0 @@ |
|||
var express = require('express'); |
|||
var fs = require('fs'); |
|||
var io = require('socket.io'); |
|||
var _ = require('underscore'); |
|||
var Mustache = require('mustache'); |
|||
|
|||
var app = express.createServer(); |
|||
var staticDir = express.static; |
|||
|
|||
io = io.listen(app); |
|||
|
|||
var opts = { |
|||
port : 1947, |
|||
baseDir : __dirname + '/../../' |
|||
}; |
|||
|
|||
io.sockets.on('connection', function(socket) { |
|||
socket.on('slidechanged', function(slideData) { |
|||
socket.broadcast.emit('slidedata', slideData); |
|||
}); |
|||
socket.on('fragmentchanged', function(fragmentData) { |
|||
socket.broadcast.emit('fragmentdata', fragmentData); |
|||
}); |
|||
}); |
|||
|
|||
app.configure(function() { |
|||
[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach(function(dir) { |
|||
app.use('/' + dir, staticDir(opts.baseDir + dir)); |
|||
}); |
|||
}); |
|||
|
|||
app.get("/", function(req, res) { |
|||
res.writeHead(200, {'Content-Type': 'text/html'}); |
|||
fs.createReadStream(opts.baseDir + '/index.html').pipe(res); |
|||
}); |
|||
|
|||
app.get("/notes/:socketId", function(req, res) { |
|||
|
|||
fs.readFile(opts.baseDir + 'plugin/notes-server/notes.html', function(err, data) { |
|||
res.send(Mustache.to_html(data.toString(), { |
|||
socketId : req.params.socketId |
|||
})); |
|||
}); |
|||
// fs.createReadStream(opts.baseDir + 'notes-server/notes.html').pipe(res);
|
|||
}); |
|||
|
|||
// Actually listen
|
|||
app.listen(opts.port || null); |
|||
|
|||
var brown = '\033[33m', |
|||
green = '\033[32m', |
|||
reset = '\033[0m'; |
|||
|
|||
var slidesLocation = "http://localhost" + ( opts.port ? ( ':' + opts.port ) : '' ); |
|||
|
|||
console.log( brown + "reveal.js - Speaker Notes" + reset ); |
|||
console.log( "1. Open the slides at " + green + slidesLocation + reset ); |
|||
console.log( "2. Click on the link your JS console to go to the notes page" ); |
|||
console.log( "3. Advance through your slides and your notes will advance automatically" ); |
@ -1,142 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<meta name="viewport" content="width=1150"> |
|||
|
|||
<title>reveal.js - Slide Notes</title> |
|||
|
|||
<style> |
|||
body { |
|||
font-family: Helvetica; |
|||
} |
|||
|
|||
#notes { |
|||
font-size: 24px; |
|||
width: 640px; |
|||
margin-top: 5px; |
|||
clear: left; |
|||
} |
|||
|
|||
#wrap-current-slide { |
|||
width: 640px; |
|||
height: 512px; |
|||
float: left; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
#current-slide { |
|||
width: 1280px; |
|||
height: 1024px; |
|||
border: none; |
|||
|
|||
-webkit-transform-origin: 0 0; |
|||
-moz-transform-origin: 0 0; |
|||
-ms-transform-origin: 0 0; |
|||
-o-transform-origin: 0 0; |
|||
transform-origin: 0 0; |
|||
|
|||
-webkit-transform: scale(0.5); |
|||
-moz-transform: scale(0.5); |
|||
-ms-transform: scale(0.5); |
|||
-o-transform: scale(0.5); |
|||
transform: scale(0.5); |
|||
} |
|||
|
|||
#wrap-next-slide { |
|||
width: 448px; |
|||
height: 358px; |
|||
float: left; |
|||
margin: 0 0 0 10px; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
#next-slide { |
|||
width: 1280px; |
|||
height: 1024px; |
|||
border: none; |
|||
|
|||
-webkit-transform-origin: 0 0; |
|||
-moz-transform-origin: 0 0; |
|||
-ms-transform-origin: 0 0; |
|||
-o-transform-origin: 0 0; |
|||
transform-origin: 0 0; |
|||
|
|||
-webkit-transform: scale(0.35); |
|||
-moz-transform: scale(0.35); |
|||
-ms-transform: scale(0.35); |
|||
-o-transform: scale(0.35); |
|||
transform: scale(0.35); |
|||
} |
|||
|
|||
.slides { |
|||
position: relative; |
|||
margin-bottom: 10px; |
|||
border: 1px solid black; |
|||
border-radius: 2px; |
|||
background: rgb(28, 30, 32); |
|||
} |
|||
|
|||
.slides span { |
|||
position: absolute; |
|||
top: 3px; |
|||
left: 3px; |
|||
font-weight: bold; |
|||
font-size: 14px; |
|||
color: rgba( 255, 255, 255, 0.9 ); |
|||
} |
|||
</style> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div id="wrap-current-slide" class="slides"> |
|||
<iframe src="/?receiver" width="1280" height="1024" id="current-slide"></iframe> |
|||
</div> |
|||
|
|||
<div id="wrap-next-slide" class="slides"> |
|||
<iframe src="/?receiver" width="640" height="512" id="next-slide"></iframe> |
|||
<span>UPCOMING:</span> |
|||
</div> |
|||
<div id="notes"></div> |
|||
|
|||
<script src="/socket.io/socket.io.js"></script> |
|||
<script src="/plugin/markdown/marked.js"></script> |
|||
|
|||
<script> |
|||
var socketId = '{{socketId}}'; |
|||
var socket = io.connect(window.location.origin); |
|||
var notes = document.getElementById('notes'); |
|||
var currentSlide = document.getElementById('current-slide'); |
|||
var nextSlide = document.getElementById('next-slide'); |
|||
|
|||
socket.on('slidedata', function(data) { |
|||
// ignore data from sockets that aren't ours |
|||
if (data.socketId !== socketId) { return; } |
|||
|
|||
if (data.markdown) { |
|||
notes.innerHTML = marked(data.notes); |
|||
} |
|||
else { |
|||
notes.innerHTML = data.notes; |
|||
} |
|||
|
|||
currentSlide.contentWindow.Reveal.slide(data.indexh, data.indexv); |
|||
nextSlide.contentWindow.Reveal.slide(data.nextindexh, data.nextindexv); |
|||
}); |
|||
socket.on('fragmentdata', function(data) { |
|||
// ignore data from sockets that aren't ours |
|||
if (data.socketId !== socketId) { return; } |
|||
|
|||
if (data.fragment === 'next') { |
|||
currentSlide.contentWindow.Reveal.nextFragment(); |
|||
} |
|||
else if (data.fragment === 'previous') { |
|||
currentSlide.contentWindow.Reveal.prevFragment(); |
|||
} |
|||
}); |
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,263 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Slide Notes</title> |
|||
|
|||
<style> |
|||
body { |
|||
font-family: Helvetica; |
|||
} |
|||
|
|||
#notes { |
|||
font-size: 24px; |
|||
width: 640px; |
|||
margin-top: 5px; |
|||
clear: left; |
|||
} |
|||
|
|||
#wrap-current-slide { |
|||
width: 640px; |
|||
height: 512px; |
|||
float: left; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
#current-slide { |
|||
width: 1280px; |
|||
height: 1024px; |
|||
border: none; |
|||
|
|||
-webkit-transform-origin: 0 0; |
|||
-moz-transform-origin: 0 0; |
|||
-ms-transform-origin: 0 0; |
|||
-o-transform-origin: 0 0; |
|||
transform-origin: 0 0; |
|||
|
|||
-webkit-transform: scale(0.5); |
|||
-moz-transform: scale(0.5); |
|||
-ms-transform: scale(0.5); |
|||
-o-transform: scale(0.5); |
|||
transform: scale(0.5); |
|||
} |
|||
|
|||
#wrap-next-slide { |
|||
width: 448px; |
|||
height: 358px; |
|||
float: left; |
|||
margin: 0 0 0 10px; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
#next-slide { |
|||
width: 1280px; |
|||
height: 1024px; |
|||
border: none; |
|||
|
|||
-webkit-transform-origin: 0 0; |
|||
-moz-transform-origin: 0 0; |
|||
-ms-transform-origin: 0 0; |
|||
-o-transform-origin: 0 0; |
|||
transform-origin: 0 0; |
|||
|
|||
-webkit-transform: scale(0.35); |
|||
-moz-transform: scale(0.35); |
|||
-ms-transform: scale(0.35); |
|||
-o-transform: scale(0.35); |
|||
transform: scale(0.35); |
|||
} |
|||
|
|||
.slides { |
|||
position: relative; |
|||
margin-bottom: 10px; |
|||
border: 1px solid black; |
|||
border-radius: 2px; |
|||
background: rgb(28, 30, 32); |
|||
} |
|||
|
|||
.slides span { |
|||
position: absolute; |
|||
top: 3px; |
|||
left: 3px; |
|||
font-weight: bold; |
|||
font-size: 14px; |
|||
color: rgba( 255, 255, 255, 0.9 ); |
|||
} |
|||
|
|||
.error { |
|||
font-weight: bold; |
|||
color: red; |
|||
font-size: 1.5em; |
|||
text-align: center; |
|||
margin-top: 10%; |
|||
} |
|||
|
|||
.error code { |
|||
font-family: monospace; |
|||
} |
|||
|
|||
.time { |
|||
width: 448px; |
|||
margin: 30px 0 0 10px; |
|||
float: left; |
|||
text-align: center; |
|||
opacity: 0; |
|||
|
|||
-webkit-transition: opacity 0.4s; |
|||
-moz-transition: opacity 0.4s; |
|||
-o-transition: opacity 0.4s; |
|||
transition: opacity 0.4s; |
|||
} |
|||
|
|||
.elapsed, |
|||
.clock { |
|||
color: #333; |
|||
font-size: 2em; |
|||
text-align: center; |
|||
display: inline-block; |
|||
padding: 0.5em; |
|||
background-color: #eee; |
|||
border-radius: 10px; |
|||
} |
|||
|
|||
.elapsed h2, |
|||
.clock h2 { |
|||
font-size: 0.8em; |
|||
line-height: 100%; |
|||
margin: 0; |
|||
color: #aaa; |
|||
} |
|||
|
|||
.elapsed .mute { |
|||
color: #ddd; |
|||
} |
|||
|
|||
</style> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div id="wrap-current-slide" class="slides"> |
|||
<script>document.write( '<iframe width="1280" height="1024" id="current-slide" src="'+ window.opener.location.href +'?receiver"></iframe>' );</script> |
|||
</div> |
|||
|
|||
<div id="wrap-next-slide" class="slides"> |
|||
<script>document.write( '<iframe width="640" height="512" id="next-slide" src="'+ window.opener.location.href +'?receiver"></iframe>' );</script> |
|||
<span>UPCOMING:</span> |
|||
</div> |
|||
|
|||
<div class="time"> |
|||
<div class="clock"> |
|||
<h2>Time</h2> |
|||
<span id="clock">0:00:00 AM</span> |
|||
</div> |
|||
<div class="elapsed"> |
|||
<h2>Elapsed</h2> |
|||
<span id="hours">00</span><span id="minutes">:00</span><span id="seconds">:00</span> |
|||
</div> |
|||
</div> |
|||
|
|||
<div id="notes"></div> |
|||
|
|||
<script src="../../plugin/markdown/marked.js"></script> |
|||
<script> |
|||
|
|||
window.addEventListener( 'load', function() { |
|||
|
|||
if( window.opener && window.opener.location && window.opener.location.href ) { |
|||
|
|||
var notes = document.getElementById( 'notes' ), |
|||
currentSlide = document.getElementById( 'current-slide' ), |
|||
nextSlide = document.getElementById( 'next-slide' ), |
|||
silenced = false; |
|||
|
|||
window.addEventListener( 'message', function( event ) { |
|||
var data = JSON.parse( event.data ); |
|||
|
|||
// No need for updating the notes in case of fragment changes |
|||
if ( data.notes !== undefined) { |
|||
if( data.markdown ) { |
|||
notes.innerHTML = marked( data.notes ); |
|||
} |
|||
else { |
|||
notes.innerHTML = data.notes; |
|||
} |
|||
} |
|||
|
|||
silenced = true; |
|||
|
|||
// Update the note slides |
|||
currentSlide.contentWindow.Reveal.slide( data.indexh, data.indexv, data.indexf ); |
|||
nextSlide.contentWindow.Reveal.slide( data.nextindexh, data.nextindexv ); |
|||
|
|||
silenced = false; |
|||
|
|||
}, false ); |
|||
|
|||
var start = new Date(), |
|||
timeEl = document.querySelector( '.time' ), |
|||
clockEl = document.getElementById( 'clock' ), |
|||
hoursEl = document.getElementById( 'hours' ), |
|||
minutesEl = document.getElementById( 'minutes' ), |
|||
secondsEl = document.getElementById( 'seconds' ); |
|||
|
|||
setInterval( function() { |
|||
|
|||
timeEl.style.opacity = 1; |
|||
|
|||
var diff, hours, minutes, seconds, |
|||
now = new Date(); |
|||
|
|||
diff = now.getTime() - start.getTime(); |
|||
hours = Math.floor( diff / ( 1000 * 60 * 60 ) ); |
|||
minutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 ); |
|||
seconds = Math.floor( ( diff / 1000 ) % 60 ); |
|||
|
|||
clockEl.innerHTML = now.toLocaleTimeString(); |
|||
hoursEl.innerHTML = zeroPadInteger( hours ); |
|||
hoursEl.className = hours > 0 ? "" : "mute"; |
|||
minutesEl.innerHTML = ":" + zeroPadInteger( minutes ); |
|||
minutesEl.className = minutes > 0 ? "" : "mute"; |
|||
secondsEl.innerHTML = ":" + zeroPadInteger( seconds ); |
|||
|
|||
}, 1000 ); |
|||
|
|||
// Broadcasts the state of the notes window to synchronize |
|||
// the main window |
|||
function synchronizeMainWindow() { |
|||
|
|||
if( !silenced ) { |
|||
var indices = currentSlide.contentWindow.Reveal.getIndices(); |
|||
window.opener.Reveal.slide( indices.h, indices.v, indices.f ); |
|||
} |
|||
|
|||
} |
|||
|
|||
// Navigate the main window when the notes slide changes |
|||
currentSlide.contentWindow.Reveal.addEventListener( 'slidechanged', synchronizeMainWindow ); |
|||
currentSlide.contentWindow.Reveal.addEventListener( 'fragmentshown', synchronizeMainWindow ); |
|||
currentSlide.contentWindow.Reveal.addEventListener( 'fragmenthidden', synchronizeMainWindow ); |
|||
|
|||
// Reconfigure the notes window to remove needless UI |
|||
currentSlide.contentWindow.Reveal.configure({ controls: false, progress: false, overview: false }); |
|||
nextSlide.contentWindow.Reveal.configure({ controls: false, progress: false, overview: false }); |
|||
|
|||
} |
|||
else { |
|||
|
|||
document.body.innerHTML = '<p class="error">Unable to access <code>window.opener.location</code>.<br>Make sure the presentation is running on a web server.</p>'; |
|||
|
|||
} |
|||
|
|||
|
|||
}, false ); |
|||
|
|||
function zeroPadInteger( num ) { |
|||
var str = "00" + parseInt( num ); |
|||
return str.substring( str.length - 2 ); |
|||
} |
|||
|
|||
</script> |
|||
</body> |
|||
</html> |
@ -1,78 +0,0 @@ |
|||
/** |
|||
* Handles opening of and synchronization with the reveal.js |
|||
* notes window. |
|||
*/ |
|||
var RevealNotes = (function() { |
|||
|
|||
function openNotes() { |
|||
var jsFileLocation = document.querySelector('script[src$="notes.js"]').src; // this js file path
|
|||
jsFileLocation = jsFileLocation.replace(/notes\.js(\?.*)?$/, ''); // the js folder path
|
|||
var notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1120,height=850' ); |
|||
|
|||
// Fires when slide is changed
|
|||
Reveal.addEventListener( 'slidechanged', post ); |
|||
|
|||
// Fires when a fragment is shown
|
|||
Reveal.addEventListener( 'fragmentshown', post ); |
|||
|
|||
// Fires when a fragment is hidden
|
|||
Reveal.addEventListener( 'fragmenthidden', post ); |
|||
|
|||
/** |
|||
* Posts the current slide data to the notes window |
|||
*/ |
|||
function post() { |
|||
var slideElement = Reveal.getCurrentSlide(), |
|||
slideIndices = Reveal.getIndices(), |
|||
messageData; |
|||
|
|||
var notes = slideElement.querySelector( 'aside.notes' ), |
|||
nextindexh, |
|||
nextindexv; |
|||
|
|||
if( slideElement.nextElementSibling && slideElement.parentNode.nodeName == 'SECTION' ) { |
|||
nextindexh = slideIndices.h; |
|||
nextindexv = slideIndices.v + 1; |
|||
} else { |
|||
nextindexh = slideIndices.h + 1; |
|||
nextindexv = 0; |
|||
} |
|||
|
|||
messageData = { |
|||
notes : notes ? notes.innerHTML : '', |
|||
indexh : slideIndices.h, |
|||
indexv : slideIndices.v, |
|||
indexf : slideIndices.f, |
|||
nextindexh : nextindexh, |
|||
nextindexv : nextindexv, |
|||
markdown : notes ? typeof notes.getAttribute( 'data-markdown' ) === 'string' : false |
|||
}; |
|||
|
|||
notesPopup.postMessage( JSON.stringify( messageData ), '*' ); |
|||
} |
|||
|
|||
// Navigate to the current slide when the notes are loaded
|
|||
notesPopup.addEventListener( 'load', function( event ) { |
|||
post(); |
|||
}, false ); |
|||
} |
|||
|
|||
// If the there's a 'notes' query set, open directly
|
|||
if( window.location.search.match( /(\?|\&)notes/gi ) !== null ) { |
|||
openNotes(); |
|||
} |
|||
|
|||
// Open the notes when the 's' key is hit
|
|||
document.addEventListener( 'keydown', function( event ) { |
|||
// Disregard the event if the target is editable or a
|
|||
// modifier is present
|
|||
if ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; |
|||
|
|||
if( event.keyCode === 83 ) { |
|||
event.preventDefault(); |
|||
openNotes(); |
|||
} |
|||
}, false ); |
|||
|
|||
return { open: openNotes }; |
|||
})(); |
@ -1,39 +0,0 @@ |
|||
<html> |
|||
<body> |
|||
|
|||
<iframe id="reveal" src="../../index.html" style="border: 0;" width="500" height="500"></iframe> |
|||
|
|||
<div> |
|||
<input id="back" type="button" value="go back"/> |
|||
<input id="ahead" type="button" value="go ahead"/> |
|||
<input id="slideto" type="button" value="slideto 2-2"/> |
|||
</div> |
|||
|
|||
<script> |
|||
|
|||
(function (){ |
|||
|
|||
var back = document.getElementById( 'back' ), |
|||
ahead = document.getElementById( 'ahead' ), |
|||
slideto = document.getElementById( 'slideto' ), |
|||
reveal = window.frames[0]; |
|||
|
|||
back.addEventListener( 'click', function () { |
|||
|
|||
reveal.postMessage( JSON.stringify({method: 'prev', args: []}), '*' ); |
|||
}, false ); |
|||
|
|||
ahead.addEventListener( 'click', function (){ |
|||
reveal.postMessage( JSON.stringify({method: 'next', args: []}), '*' ); |
|||
}, false ); |
|||
|
|||
slideto.addEventListener( 'click', function (){ |
|||
reveal.postMessage( JSON.stringify({method: 'slide', args: [2,2]}), '*' ); |
|||
}, false ); |
|||
|
|||
}()); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,42 +0,0 @@ |
|||
/* |
|||
|
|||
simple postmessage plugin |
|||
|
|||
Useful when a reveal slideshow is inside an iframe. |
|||
It allows to call reveal methods from outside. |
|||
|
|||
Example: |
|||
var reveal = window.frames[0]; |
|||
|
|||
// Reveal.prev();
|
|||
reveal.postMessage(JSON.stringify({method: 'prev', args: []}), '*'); |
|||
// Reveal.next();
|
|||
reveal.postMessage(JSON.stringify({method: 'next', args: []}), '*'); |
|||
// Reveal.slide(2, 2);
|
|||
reveal.postMessage(JSON.stringify({method: 'slide', args: [2,2]}), '*'); |
|||
|
|||
Add to the slideshow: |
|||
|
|||
dependencies: [ |
|||
... |
|||
{ src: 'plugin/postmessage/postmessage.js', async: true, condition: function() { return !!document.body.classList; } } |
|||
] |
|||
|
|||
*/ |
|||
|
|||
(function (){ |
|||
|
|||
window.addEventListener( "message", function ( event ) { |
|||
var data = JSON.parse( event.data ), |
|||
method = data.method, |
|||
args = data.args; |
|||
|
|||
if( typeof Reveal[method] === 'function' ) { |
|||
Reveal[method].apply( Reveal, data.args ); |
|||
} |
|||
}, false); |
|||
|
|||
}()); |
|||
|
|||
|
|||
|
@ -1,44 +0,0 @@ |
|||
/** |
|||
* phantomjs script for printing presentations to PDF. |
|||
* |
|||
* Example: |
|||
* phantomjs print-pdf.js "http://lab.hakim.se/reveal-js?print-pdf" reveal-demo.pdf |
|||
* |
|||
* By Manuel Bieh (https://github.com/manuelbieh)
|
|||
*/ |
|||
|
|||
// html2pdf.js
|
|||
var page = new WebPage(); |
|||
var system = require( 'system' ); |
|||
|
|||
page.viewportSize = { |
|||
width: 1024, |
|||
height: 768 |
|||
}; |
|||
|
|||
page.paperSize = { |
|||
format: 'letter', |
|||
orientation: 'landscape', |
|||
margin: { |
|||
left: '0', |
|||
right: '0', |
|||
top: '0', |
|||
bottom: '0' |
|||
} |
|||
}; |
|||
|
|||
var revealFile = system.args[1] || 'index.html?print-pdf'; |
|||
var slideFile = system.args[2] || 'slides.pdf'; |
|||
|
|||
if( slideFile.match( /\.pdf$/gi ) === null ) { |
|||
slideFile += '.pdf'; |
|||
} |
|||
|
|||
console.log( 'Printing PDF...' ); |
|||
|
|||
page.open( revealFile, function( status ) { |
|||
console.log( 'Printed succesfully' ); |
|||
page.render( slideFile ); |
|||
phantom.exit(); |
|||
} ); |
|||
|
@ -1,39 +0,0 @@ |
|||
/** |
|||
* Touch-based remote controller for your presentation courtesy |
|||
* of the folks at http://remotes.io
|
|||
*/ |
|||
|
|||
(function(window){ |
|||
|
|||
/** |
|||
* Detects if we are dealing with a touch enabled device (with some false positives) |
|||
* Borrowed from modernizr: https://github.com/Modernizr/Modernizr/blob/master/feature-detects/touch.js
|
|||
*/ |
|||
var hasTouch = (function(){ |
|||
return ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch; |
|||
})(); |
|||
|
|||
/** |
|||
* Detects if notes are enable and the current page is opened inside an /iframe |
|||
* this prevents loading Remotes.io several times |
|||
*/ |
|||
var isNotesAndIframe = (function(){ |
|||
return window.RevealNotes && !(self == top); |
|||
})(); |
|||
|
|||
if(!hasTouch && !isNotesAndIframe){ |
|||
head.ready( 'remotes.ne.min.js', function() { |
|||
new Remotes("preview") |
|||
.on("swipe-left", function(e){ Reveal.right(); }) |
|||
.on("swipe-right", function(e){ Reveal.left(); }) |
|||
.on("swipe-up", function(e){ Reveal.down(); }) |
|||
.on("swipe-down", function(e){ Reveal.up(); }) |
|||
.on("tap", function(e){ Reveal.next(); }) |
|||
.on("zoom-out", function(e){ Reveal.toggleOverview(true); }) |
|||
.on("zoom-in", function(e){ Reveal.toggleOverview(false); }) |
|||
; |
|||
} ); |
|||
|
|||
head.js('https://raw.github.com/Remotes/Remotes/master/dist/remotes.ne.min.js'); |
|||
} |
|||
})(window); |
@ -1,196 +0,0 @@ |
|||
/* |
|||
* Handles finding a text string anywhere in the slides and showing the next occurrence to the user |
|||
* by navigatating to that slide and highlighting it. |
|||
* |
|||
* By Jon Snyder <snyder.jon@gmail.com>, February 2013 |
|||
*/ |
|||
|
|||
var RevealSearch = (function() { |
|||
|
|||
var matchedSlides; |
|||
var currentMatchedIndex; |
|||
var searchboxDirty; |
|||
var myHilitor; |
|||
|
|||
// Original JavaScript code by Chirp Internet: www.chirp.com.au
|
|||
// Please acknowledge use of this code by including this header.
|
|||
// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.
|
|||
|
|||
function Hilitor(id, tag) |
|||
{ |
|||
|
|||
var targetNode = document.getElementById(id) || document.body; |
|||
var hiliteTag = tag || "EM"; |
|||
var skipTags = new RegExp("^(?:" + hiliteTag + "|SCRIPT|FORM|SPAN)$"); |
|||
var colors = ["#ff6", "#a0ffff", "#9f9", "#f99", "#f6f"]; |
|||
var wordColor = []; |
|||
var colorIdx = 0; |
|||
var matchRegex = ""; |
|||
var matchingSlides = []; |
|||
|
|||
this.setRegex = function(input) |
|||
{ |
|||
input = input.replace(/^[^\w]+|[^\w]+$/g, "").replace(/[^\w'-]+/g, "|"); |
|||
matchRegex = new RegExp("(" + input + ")","i"); |
|||
} |
|||
|
|||
this.getRegex = function() |
|||
{ |
|||
return matchRegex.toString().replace(/^\/\\b\(|\)\\b\/i$/g, "").replace(/\|/g, " "); |
|||
} |
|||
|
|||
// recursively apply word highlighting
|
|||
this.hiliteWords = function(node) |
|||
{ |
|||
if(node == undefined || !node) return; |
|||
if(!matchRegex) return; |
|||
if(skipTags.test(node.nodeName)) return; |
|||
|
|||
if(node.hasChildNodes()) { |
|||
for(var i=0; i < node.childNodes.length; i++) |
|||
this.hiliteWords(node.childNodes[i]); |
|||
} |
|||
if(node.nodeType == 3) { // NODE_TEXT
|
|||
if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) { |
|||
//find the slide's section element and save it in our list of matching slides
|
|||
var secnode = node.parentNode; |
|||
while (secnode.nodeName != 'SECTION') { |
|||
secnode = secnode.parentNode; |
|||
} |
|||
|
|||
var slideIndex = Reveal.getIndices(secnode); |
|||
var slidelen = matchingSlides.length; |
|||
var alreadyAdded = false; |
|||
for (var i=0; i < slidelen; i++) { |
|||
if ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) { |
|||
alreadyAdded = true; |
|||
} |
|||
} |
|||
if (! alreadyAdded) { |
|||
matchingSlides.push(slideIndex); |
|||
} |
|||
|
|||
if(!wordColor[regs[0].toLowerCase()]) { |
|||
wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length]; |
|||
} |
|||
|
|||
var match = document.createElement(hiliteTag); |
|||
match.appendChild(document.createTextNode(regs[0])); |
|||
match.style.backgroundColor = wordColor[regs[0].toLowerCase()]; |
|||
match.style.fontStyle = "inherit"; |
|||
match.style.color = "#000"; |
|||
|
|||
var after = node.splitText(regs.index); |
|||
after.nodeValue = after.nodeValue.substring(regs[0].length); |
|||
node.parentNode.insertBefore(match, after); |
|||
} |
|||
} |
|||
}; |
|||
|
|||
// remove highlighting
|
|||
this.remove = function() |
|||
{ |
|||
var arr = document.getElementsByTagName(hiliteTag); |
|||
while(arr.length && (el = arr[0])) { |
|||
el.parentNode.replaceChild(el.firstChild, el); |
|||
} |
|||
}; |
|||
|
|||
// start highlighting at target node
|
|||
this.apply = function(input) |
|||
{ |
|||
if(input == undefined || !input) return; |
|||
this.remove(); |
|||
this.setRegex(input); |
|||
this.hiliteWords(targetNode); |
|||
return matchingSlides; |
|||
}; |
|||
|
|||
} |
|||
|
|||
function openSearch() { |
|||
//ensure the search term input dialog is visible and has focus:
|
|||
var inputbox = document.getElementById("searchinput"); |
|||
inputbox.style.display = "inline"; |
|||
inputbox.focus(); |
|||
inputbox.select(); |
|||
} |
|||
|
|||
function toggleSearch() { |
|||
var inputbox = document.getElementById("searchinput"); |
|||
if (inputbox.style.display !== "inline") { |
|||
openSearch(); |
|||
} |
|||
else { |
|||
inputbox.style.display = "none"; |
|||
myHilitor.remove(); |
|||
} |
|||
} |
|||
|
|||
function doSearch() { |
|||
//if there's been a change in the search term, perform a new search:
|
|||
if (searchboxDirty) { |
|||
var searchstring = document.getElementById("searchinput").value; |
|||
|
|||
//find the keyword amongst the slides
|
|||
myHilitor = new Hilitor("slidecontent"); |
|||
matchedSlides = myHilitor.apply(searchstring); |
|||
currentMatchedIndex = 0; |
|||
} |
|||
|
|||
//navigate to the next slide that has the keyword, wrapping to the first if necessary
|
|||
if (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) { |
|||
currentMatchedIndex = 0; |
|||
} |
|||
if (matchedSlides.length > currentMatchedIndex) { |
|||
Reveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v); |
|||
currentMatchedIndex++; |
|||
} |
|||
} |
|||
|
|||
var dom = {}; |
|||
dom.wrapper = document.querySelector( '.reveal' ); |
|||
|
|||
if( !dom.wrapper.querySelector( '.searchbox' ) ) { |
|||
var searchElement = document.createElement( 'div' ); |
|||
searchElement.id = "searchinputdiv"; |
|||
searchElement.classList.add( 'searchdiv' ); |
|||
searchElement.style.position = 'absolute'; |
|||
searchElement.style.top = '10px'; |
|||
searchElement.style.left = '10px'; |
|||
//embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:
|
|||
searchElement.innerHTML = '<span><input type="search" id="searchinput" class="searchinput" style="vertical-align: top;"/><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC" id="searchbutton" class="searchicon" style="vertical-align: top; margin-top: -1px;"/></span>'; |
|||
dom.wrapper.appendChild( searchElement ); |
|||
} |
|||
|
|||
document.getElementById("searchbutton").addEventListener( 'click', function(event) { |
|||
doSearch(); |
|||
}, false ); |
|||
|
|||
document.getElementById("searchinput").addEventListener( 'keyup', function( event ) { |
|||
switch (event.keyCode) { |
|||
case 13: |
|||
event.preventDefault(); |
|||
doSearch(); |
|||
searchboxDirty = false; |
|||
break; |
|||
default: |
|||
searchboxDirty = true; |
|||
} |
|||
}, false ); |
|||
|
|||
// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)
|
|||
/* |
|||
document.addEventListener( 'keydown', function( event ) { |
|||
// Disregard the event if the target is editable or a
|
|||
// modifier is present
|
|||
if ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return; |
|||
|
|||
if( event.keyCode === 83 ) { |
|||
event.preventDefault(); |
|||
openSearch(); |
|||
} |
|||
}, false ); |
|||
*/ |
|||
return { open: openSearch }; |
|||
})(); |
@ -1,256 +0,0 @@ |
|||
// Custom reveal.js integration
|
|||
(function(){ |
|||
var isEnabled = true; |
|||
|
|||
document.querySelector( '.reveal' ).addEventListener( 'mousedown', function( event ) { |
|||
if( event.altKey && isEnabled ) { |
|||
event.preventDefault(); |
|||
zoom.to({ element: event.target, pan: false }); |
|||
} |
|||
} ); |
|||
|
|||
Reveal.addEventListener( 'overviewshown', function() { isEnabled = false; } ); |
|||
Reveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } ); |
|||
})(); |
|||
|
|||
/*! |
|||
* zoom.js 0.2 (modified version for use with reveal.js) |
|||
* http://lab.hakim.se/zoom-js
|
|||
* MIT licensed |
|||
* |
|||
* Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se
|
|||
*/ |
|||
var zoom = (function(){ |
|||
|
|||
// The current zoom level (scale)
|
|||
var level = 1; |
|||
|
|||
// The current mouse position, used for panning
|
|||
var mouseX = 0, |
|||
mouseY = 0; |
|||
|
|||
// Timeout before pan is activated
|
|||
var panEngageTimeout = -1, |
|||
panUpdateInterval = -1; |
|||
|
|||
var currentOptions = null; |
|||
|
|||
// Check for transform support so that we can fallback otherwise
|
|||
var supportsTransforms = 'WebkitTransform' in document.body.style || |
|||
'MozTransform' in document.body.style || |
|||
'msTransform' in document.body.style || |
|||
'OTransform' in document.body.style || |
|||
'transform' in document.body.style; |
|||
|
|||
if( supportsTransforms ) { |
|||
// The easing that will be applied when we zoom in/out
|
|||
document.body.style.transition = 'transform 0.8s ease'; |
|||
document.body.style.OTransition = '-o-transform 0.8s ease'; |
|||
document.body.style.msTransition = '-ms-transform 0.8s ease'; |
|||
document.body.style.MozTransition = '-moz-transform 0.8s ease'; |
|||
document.body.style.WebkitTransition = '-webkit-transform 0.8s ease'; |
|||
} |
|||
|
|||
// Zoom out if the user hits escape
|
|||
document.addEventListener( 'keyup', function( event ) { |
|||
if( level !== 1 && event.keyCode === 27 ) { |
|||
zoom.out(); |
|||
} |
|||
}, false ); |
|||
|
|||
// Monitor mouse movement for panning
|
|||
document.addEventListener( 'mousemove', function( event ) { |
|||
if( level !== 1 ) { |
|||
mouseX = event.clientX; |
|||
mouseY = event.clientY; |
|||
} |
|||
}, false ); |
|||
|
|||
/** |
|||
* Applies the CSS required to zoom in, prioritizes use of CSS3 |
|||
* transforms but falls back on zoom for IE. |
|||
* |
|||
* @param {Number} pageOffsetX |
|||
* @param {Number} pageOffsetY |
|||
* @param {Number} elementOffsetX |
|||
* @param {Number} elementOffsetY |
|||
* @param {Number} scale |
|||
*/ |
|||
function magnify( pageOffsetX, pageOffsetY, elementOffsetX, elementOffsetY, scale ) { |
|||
|
|||
if( supportsTransforms ) { |
|||
var origin = pageOffsetX +'px '+ pageOffsetY +'px', |
|||
transform = 'translate('+ -elementOffsetX +'px,'+ -elementOffsetY +'px) scale('+ scale +')'; |
|||
|
|||
document.body.style.transformOrigin = origin; |
|||
document.body.style.OTransformOrigin = origin; |
|||
document.body.style.msTransformOrigin = origin; |
|||
document.body.style.MozTransformOrigin = origin; |
|||
document.body.style.WebkitTransformOrigin = origin; |
|||
|
|||
document.body.style.transform = transform; |
|||
document.body.style.OTransform = transform; |
|||
document.body.style.msTransform = transform; |
|||
document.body.style.MozTransform = transform; |
|||
document.body.style.WebkitTransform = transform; |
|||
} |
|||
else { |
|||
// Reset all values
|
|||
if( scale === 1 ) { |
|||
document.body.style.position = ''; |
|||
document.body.style.left = ''; |
|||
document.body.style.top = ''; |
|||
document.body.style.width = ''; |
|||
document.body.style.height = ''; |
|||
document.body.style.zoom = ''; |
|||
} |
|||
// Apply scale
|
|||
else { |
|||
document.body.style.position = 'relative'; |
|||
document.body.style.left = ( - ( pageOffsetX + elementOffsetX ) / scale ) + 'px'; |
|||
document.body.style.top = ( - ( pageOffsetY + elementOffsetY ) / scale ) + 'px'; |
|||
document.body.style.width = ( scale * 100 ) + '%'; |
|||
document.body.style.height = ( scale * 100 ) + '%'; |
|||
document.body.style.zoom = scale; |
|||
} |
|||
} |
|||
|
|||
level = scale; |
|||
|
|||
if( level !== 1 && document.documentElement.classList ) { |
|||
document.documentElement.classList.add( 'zoomed' ); |
|||
} |
|||
else { |
|||
document.documentElement.classList.remove( 'zoomed' ); |
|||
} |
|||
} |
|||
|
|||
/** |
|||
* Pan the document when the mosue cursor approaches the edges |
|||
* of the window. |
|||
*/ |
|||
function pan() { |
|||
var range = 0.12, |
|||
rangeX = window.innerWidth * range, |
|||
rangeY = window.innerHeight * range, |
|||
scrollOffset = getScrollOffset(); |
|||
|
|||
// Up
|
|||
if( mouseY < rangeY ) { |
|||
window.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) ); |
|||
} |
|||
// Down
|
|||
else if( mouseY > window.innerHeight - rangeY ) { |
|||
window.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) ); |
|||
} |
|||
|
|||
// Left
|
|||
if( mouseX < rangeX ) { |
|||
window.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y ); |
|||
} |
|||
// Right
|
|||
else if( mouseX > window.innerWidth - rangeX ) { |
|||
window.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y ); |
|||
} |
|||
} |
|||
|
|||
function getScrollOffset() { |
|||
return { |
|||
x: window.scrollX !== undefined ? window.scrollX : window.pageXOffset, |
|||
y: window.scrollY !== undefined ? window.scrollY : window.pageXYffset |
|||
} |
|||
} |
|||
|
|||
return { |
|||
/** |
|||
* Zooms in on either a rectangle or HTML element. |
|||
* |
|||
* @param {Object} options |
|||
* - element: HTML element to zoom in on |
|||
* OR |
|||
* - x/y: coordinates in non-transformed space to zoom in on |
|||
* - width/height: the portion of the screen to zoom in on |
|||
* - scale: can be used instead of width/height to explicitly set scale |
|||
*/ |
|||
to: function( options ) { |
|||
// Due to an implementation limitation we can't zoom in
|
|||
// to another element without zooming out first
|
|||
if( level !== 1 ) { |
|||
zoom.out(); |
|||
} |
|||
else { |
|||
options.x = options.x || 0; |
|||
options.y = options.y || 0; |
|||
|
|||
// If an element is set, that takes precedence
|
|||
if( !!options.element ) { |
|||
// Space around the zoomed in element to leave on screen
|
|||
var padding = 20; |
|||
|
|||
options.width = options.element.getBoundingClientRect().width + ( padding * 2 ); |
|||
options.height = options.element.getBoundingClientRect().height + ( padding * 2 ); |
|||
options.x = options.element.getBoundingClientRect().left - padding; |
|||
options.y = options.element.getBoundingClientRect().top - padding; |
|||
} |
|||
|
|||
// If width/height values are set, calculate scale from those values
|
|||
if( options.width !== undefined && options.height !== undefined ) { |
|||
options.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 ); |
|||
} |
|||
|
|||
if( options.scale > 1 ) { |
|||
options.x *= options.scale; |
|||
options.y *= options.scale; |
|||
|
|||
var scrollOffset = getScrollOffset(); |
|||
|
|||
if( options.element ) { |
|||
scrollOffset.x -= ( window.innerWidth - ( options.width * options.scale ) ) / 2; |
|||
} |
|||
|
|||
magnify( scrollOffset.x, scrollOffset.y, options.x, options.y, options.scale ); |
|||
|
|||
if( options.pan !== false ) { |
|||
|
|||
// Wait with engaging panning as it may conflict with the
|
|||
// zoom transition
|
|||
panEngageTimeout = setTimeout( function() { |
|||
panUpdateInterval = setInterval( pan, 1000 / 60 ); |
|||
}, 800 ); |
|||
|
|||
} |
|||
} |
|||
|
|||
currentOptions = options; |
|||
} |
|||
}, |
|||
|
|||
/** |
|||
* Resets the document zoom state to its default. |
|||
*/ |
|||
out: function() { |
|||
clearTimeout( panEngageTimeout ); |
|||
clearInterval( panUpdateInterval ); |
|||
|
|||
var scrollOffset = getScrollOffset(); |
|||
|
|||
if( currentOptions && currentOptions.element ) { |
|||
scrollOffset.x -= ( window.innerWidth - ( currentOptions.width * currentOptions.scale ) ) / 2; |
|||
} |
|||
|
|||
magnify( scrollOffset.x, scrollOffset.y, 0, 0, 1 ); |
|||
|
|||
level = 1; |
|||
}, |
|||
|
|||
// Alias
|
|||
magnify: function( options ) { this.to( options ) }, |
|||
reset: function() { this.out() }, |
|||
|
|||
zoomLevel: function() { |
|||
return level; |
|||
} |
|||
} |
|||
|
|||
})(); |
|||
|
Before Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 10 KiB |
@ -1,42 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Barebones</title> |
|||
|
|||
<link rel="stylesheet" href="../../css/reveal.min.css"> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section> |
|||
<h2>Barebones Presentation</h2> |
|||
<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p> |
|||
</section> |
|||
|
|||
<section> |
|||
<h2>No Theme</h2> |
|||
<p>There's no theme included, so it will fall back on browser defaults.</p> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../../lib/js/head.min.js"></script> |
|||
<script src="../../js/reveal.min.js"></script> |
|||
|
|||
<script> |
|||
|
|||
Reveal.initialize(); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,49 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Embedded Media</title> |
|||
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
|
|||
<link rel="stylesheet" href="../../css/reveal.min.css"> |
|||
<link rel="stylesheet" href="../../css/theme/default.css" id="theme"> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section> |
|||
<h2>Embedded Media Test</h2> |
|||
</section> |
|||
|
|||
<section> |
|||
<iframe data-autoplay width="420" height="345" src="http://www.youtube.com/embed/l3RQZ4mcr1c"></iframe> |
|||
</section> |
|||
|
|||
<section> |
|||
<h2>Empty Slide</h2> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../../lib/js/head.min.js"></script> |
|||
<script src="../../js/reveal.min.js"></script> |
|||
|
|||
<script> |
|||
|
|||
Reveal.initialize({ |
|||
transition: 'linear' |
|||
}); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,185 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Math Plugin</title> |
|||
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
|
|||
<link rel="stylesheet" href="../../css/reveal.min.css"> |
|||
<link rel="stylesheet" href="../../css/theme/night.css" id="theme"> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section> |
|||
<h2>reveal.js Math Plugin</h2> |
|||
<p>A thin wrapper for MathJax</p> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>The Lorenz Equations</h3> |
|||
|
|||
\[\begin{aligned} |
|||
\dot{x} & = \sigma(y-x) \\ |
|||
\dot{y} & = \rho x - y - xz \\ |
|||
\dot{z} & = -\beta z + xy |
|||
\end{aligned} \] |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>The Cauchy-Schwarz Inequality</h3> |
|||
|
|||
<script type="math/tex; mode=display"> |
|||
\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) |
|||
</script> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>A Cross Product Formula</h3> |
|||
|
|||
\[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} |
|||
\mathbf{i} & \mathbf{j} & \mathbf{k} \\ |
|||
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ |
|||
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 |
|||
\end{vmatrix} \] |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>The probability of getting \(k\) heads when flipping \(n\) coins is</h3> |
|||
|
|||
\[P(E) = {n \choose k} p^k (1-p)^{ n-k} \] |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>An Identity of Ramanujan</h3> |
|||
|
|||
\[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = |
|||
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} |
|||
{1+\frac{e^{-8\pi}} {1+\ldots} } } } \] |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>A Rogers-Ramanujan Identity</h3> |
|||
|
|||
\[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = |
|||
\prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\] |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>Maxwell’s Equations</h3> |
|||
|
|||
\[ \begin{aligned} |
|||
\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\ |
|||
\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\ |
|||
\nabla \cdot \vec{\mathbf{B}} & = 0 \end{aligned} |
|||
\] |
|||
</section> |
|||
|
|||
<section> |
|||
<section> |
|||
<h3>The Lorenz Equations</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[\begin{aligned} |
|||
\dot{x} & = \sigma(y-x) \\ |
|||
\dot{y} & = \rho x - y - xz \\ |
|||
\dot{z} & = -\beta z + xy |
|||
\end{aligned} \] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>The Cauchy-Schwarz Inequality</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[ \left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) \] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>A Cross Product Formula</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[\mathbf{V}_1 \times \mathbf{V}_2 = \begin{vmatrix} |
|||
\mathbf{i} & \mathbf{j} & \mathbf{k} \\ |
|||
\frac{\partial X}{\partial u} & \frac{\partial Y}{\partial u} & 0 \\ |
|||
\frac{\partial X}{\partial v} & \frac{\partial Y}{\partial v} & 0 |
|||
\end{vmatrix} \] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>The probability of getting \(k\) heads when flipping \(n\) coins is</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[P(E) = {n \choose k} p^k (1-p)^{ n-k} \] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>An Identity of Ramanujan</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[ \frac{1}{\Bigl(\sqrt{\phi \sqrt{5}}-\phi\Bigr) e^{\frac25 \pi}} = |
|||
1+\frac{e^{-2\pi}} {1+\frac{e^{-4\pi}} {1+\frac{e^{-6\pi}} |
|||
{1+\frac{e^{-8\pi}} {1+\ldots} } } } \] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>A Rogers-Ramanujan Identity</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[ 1 + \frac{q^2}{(1-q)}+\frac{q^6}{(1-q)(1-q^2)}+\cdots = |
|||
\prod_{j=0}^{\infty}\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\] |
|||
</div> |
|||
</section> |
|||
|
|||
<section> |
|||
<h3>Maxwell’s Equations</h3> |
|||
|
|||
<div class="fragment"> |
|||
\[ \begin{aligned} |
|||
\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} & = \frac{4\pi}{c}\vec{\mathbf{j}} \\ \nabla \cdot \vec{\mathbf{E}} & = 4 \pi \rho \\ |
|||
\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} & = \vec{\mathbf{0}} \\ |
|||
\nabla \cdot \vec{\mathbf{B}} & = 0 \end{aligned} |
|||
\] |
|||
</div> |
|||
</section> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../../lib/js/head.min.js"></script> |
|||
<script src="../../js/reveal.min.js"></script> |
|||
|
|||
<script> |
|||
|
|||
Reveal.initialize({ |
|||
history: true, |
|||
transition: 'linear', |
|||
|
|||
math: { |
|||
// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js', |
|||
config: 'TeX-AMS_HTML-full' |
|||
}, |
|||
|
|||
dependencies: [ |
|||
{ src: '../../lib/js/classList.js' }, |
|||
{ src: '../../plugin/math/math.js', async: true } |
|||
] |
|||
}); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,101 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Slide Backgrounds</title> |
|||
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|||
|
|||
<link rel="stylesheet" href="../../css/reveal.min.css"> |
|||
<link rel="stylesheet" href="../../css/theme/serif.css" id="theme"> |
|||
</head> |
|||
|
|||
<body> |
|||
|
|||
<div class="reveal"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section data-background="#00ffff"> |
|||
<h2>data-background: #00ffff</h2> |
|||
</section> |
|||
|
|||
<section data-background="#bb00bb"> |
|||
<h2>data-background: #bb00bb</h2> |
|||
</section> |
|||
|
|||
<section> |
|||
<section data-background="#ff0000"> |
|||
<h2>data-background: #ff0000</h2> |
|||
</section> |
|||
<section data-background="rgba(0, 0, 0, 0.2)"> |
|||
<h2>data-background: rgba(0, 0, 0, 0.2)</h2> |
|||
</section> |
|||
<section data-background="salmon"> |
|||
<h2>data-background: salmon</h2> |
|||
</section> |
|||
</section> |
|||
|
|||
<section data-background="rgba(0, 100, 100, 0.2)"> |
|||
<section> |
|||
<h2>Background applied to stack</h2> |
|||
</section> |
|||
<section> |
|||
<h2>Background applied to stack</h2> |
|||
</section> |
|||
<section data-background="rgba(100, 0, 0, 0.2)"> |
|||
<h2>Background applied to slide inside of stack</h2> |
|||
</section> |
|||
</section> |
|||
|
|||
<section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)"> |
|||
<h2>Background image</h2> |
|||
</section> |
|||
|
|||
<section> |
|||
<section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)"> |
|||
<h2>Background image</h2> |
|||
</section> |
|||
<section data-background-transition="slide" data-background="assets/image1.png" style="background: rgba(255,255,255,0.9)"> |
|||
<h2>Background image</h2> |
|||
</section> |
|||
</section> |
|||
|
|||
<section data-background="assets/image2.png" data-background-size="100px" data-background-repeat="repeat" data-background-color="#111" style="background: rgba(255,255,255,0.9)"> |
|||
<h2>Background image</h2> |
|||
<pre>data-background-size="100px" data-background-repeat="repeat" data-background-color="#111"</pre> |
|||
</section> |
|||
|
|||
<section data-background="#888888"> |
|||
<h2>Same background twice (1/2)</h2> |
|||
</section> |
|||
<section data-background="#888888"> |
|||
<h2>Same background twice (2/2)</h2> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../../lib/js/head.min.js"></script> |
|||
<script src="../../js/reveal.min.js"></script> |
|||
|
|||
<script> |
|||
|
|||
// Full list of configuration options available here: |
|||
// https://github.com/hakimel/reveal.js#configuration |
|||
Reveal.initialize({ |
|||
center: true, |
|||
// rtl: true, |
|||
|
|||
transition: 'linear', |
|||
// transitionSpeed: 'slow', |
|||
// backgroundTransition: 'linear' |
|||
}); |
|||
|
|||
</script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,244 +0,0 @@ |
|||
/** |
|||
* QUnit v1.12.0 - A JavaScript Unit Testing Framework |
|||
* |
|||
* http://qunitjs.com |
|||
* |
|||
* Copyright 2012 jQuery Foundation and other contributors |
|||
* Released under the MIT license. |
|||
* http://jquery.org/license |
|||
*/ |
|||
|
|||
/** Font Family and Sizes */ |
|||
|
|||
#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult { |
|||
font-family: "Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial, sans-serif; |
|||
} |
|||
|
|||
#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; } |
|||
#qunit-tests { font-size: smaller; } |
|||
|
|||
|
|||
/** Resets */ |
|||
|
|||
#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter { |
|||
margin: 0; |
|||
padding: 0; |
|||
} |
|||
|
|||
|
|||
/** Header */ |
|||
|
|||
#qunit-header { |
|||
padding: 0.5em 0 0.5em 1em; |
|||
|
|||
color: #8699a4; |
|||
background-color: #0d3349; |
|||
|
|||
font-size: 1.5em; |
|||
line-height: 1em; |
|||
font-weight: normal; |
|||
|
|||
border-radius: 5px 5px 0 0; |
|||
-moz-border-radius: 5px 5px 0 0; |
|||
-webkit-border-top-right-radius: 5px; |
|||
-webkit-border-top-left-radius: 5px; |
|||
} |
|||
|
|||
#qunit-header a { |
|||
text-decoration: none; |
|||
color: #c2ccd1; |
|||
} |
|||
|
|||
#qunit-header a:hover, |
|||
#qunit-header a:focus { |
|||
color: #fff; |
|||
} |
|||
|
|||
#qunit-testrunner-toolbar label { |
|||
display: inline-block; |
|||
padding: 0 .5em 0 .1em; |
|||
} |
|||
|
|||
#qunit-banner { |
|||
height: 5px; |
|||
} |
|||
|
|||
#qunit-testrunner-toolbar { |
|||
padding: 0.5em 0 0.5em 2em; |
|||
color: #5E740B; |
|||
background-color: #eee; |
|||
overflow: hidden; |
|||
} |
|||
|
|||
#qunit-userAgent { |
|||
padding: 0.5em 0 0.5em 2.5em; |
|||
background-color: #2b81af; |
|||
color: #fff; |
|||
text-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px; |
|||
} |
|||
|
|||
#qunit-modulefilter-container { |
|||
float: right; |
|||
} |
|||
|
|||
/** Tests: Pass/Fail */ |
|||
|
|||
#qunit-tests { |
|||
list-style-position: inside; |
|||
} |
|||
|
|||
#qunit-tests li { |
|||
padding: 0.4em 0.5em 0.4em 2.5em; |
|||
border-bottom: 1px solid #fff; |
|||
list-style-position: inside; |
|||
} |
|||
|
|||
#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running { |
|||
display: none; |
|||
} |
|||
|
|||
#qunit-tests li strong { |
|||
cursor: pointer; |
|||
} |
|||
|
|||
#qunit-tests li a { |
|||
padding: 0.5em; |
|||
color: #c2ccd1; |
|||
text-decoration: none; |
|||
} |
|||
#qunit-tests li a:hover, |
|||
#qunit-tests li a:focus { |
|||
color: #000; |
|||
} |
|||
|
|||
#qunit-tests li .runtime { |
|||
float: right; |
|||
font-size: smaller; |
|||
} |
|||
|
|||
.qunit-assert-list { |
|||
margin-top: 0.5em; |
|||
padding: 0.5em; |
|||
|
|||
background-color: #fff; |
|||
|
|||
border-radius: 5px; |
|||
-moz-border-radius: 5px; |
|||
-webkit-border-radius: 5px; |
|||
} |
|||
|
|||
.qunit-collapsed { |
|||
display: none; |
|||
} |
|||
|
|||
#qunit-tests table { |
|||
border-collapse: collapse; |
|||
margin-top: .2em; |
|||
} |
|||
|
|||
#qunit-tests th { |
|||
text-align: right; |
|||
vertical-align: top; |
|||
padding: 0 .5em 0 0; |
|||
} |
|||
|
|||
#qunit-tests td { |
|||
vertical-align: top; |
|||
} |
|||
|
|||
#qunit-tests pre { |
|||
margin: 0; |
|||
white-space: pre-wrap; |
|||
word-wrap: break-word; |
|||
} |
|||
|
|||
#qunit-tests del { |
|||
background-color: #e0f2be; |
|||
color: #374e0c; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
#qunit-tests ins { |
|||
background-color: #ffcaca; |
|||
color: #500; |
|||
text-decoration: none; |
|||
} |
|||
|
|||
/*** Test Counts */ |
|||
|
|||
#qunit-tests b.counts { color: black; } |
|||
#qunit-tests b.passed { color: #5E740B; } |
|||
#qunit-tests b.failed { color: #710909; } |
|||
|
|||
#qunit-tests li li { |
|||
padding: 5px; |
|||
background-color: #fff; |
|||
border-bottom: none; |
|||
list-style-position: inside; |
|||
} |
|||
|
|||
/*** Passing Styles */ |
|||
|
|||
#qunit-tests li li.pass { |
|||
color: #3c510c; |
|||
background-color: #fff; |
|||
border-left: 10px solid #C6E746; |
|||
} |
|||
|
|||
#qunit-tests .pass { color: #528CE0; background-color: #D2E0E6; } |
|||
#qunit-tests .pass .test-name { color: #366097; } |
|||
|
|||
#qunit-tests .pass .test-actual, |
|||
#qunit-tests .pass .test-expected { color: #999999; } |
|||
|
|||
#qunit-banner.qunit-pass { background-color: #C6E746; } |
|||
|
|||
/*** Failing Styles */ |
|||
|
|||
#qunit-tests li li.fail { |
|||
color: #710909; |
|||
background-color: #fff; |
|||
border-left: 10px solid #EE5757; |
|||
white-space: pre; |
|||
} |
|||
|
|||
#qunit-tests > li:last-child { |
|||
border-radius: 0 0 5px 5px; |
|||
-moz-border-radius: 0 0 5px 5px; |
|||
-webkit-border-bottom-right-radius: 5px; |
|||
-webkit-border-bottom-left-radius: 5px; |
|||
} |
|||
|
|||
#qunit-tests .fail { color: #000000; background-color: #EE5757; } |
|||
#qunit-tests .fail .test-name, |
|||
#qunit-tests .fail .module-name { color: #000000; } |
|||
|
|||
#qunit-tests .fail .test-actual { color: #EE5757; } |
|||
#qunit-tests .fail .test-expected { color: green; } |
|||
|
|||
#qunit-banner.qunit-fail { background-color: #EE5757; } |
|||
|
|||
|
|||
/** Result */ |
|||
|
|||
#qunit-testresult { |
|||
padding: 0.5em 0.5em 0.5em 2.5em; |
|||
|
|||
color: #2b81af; |
|||
background-color: #D2E0E6; |
|||
|
|||
border-bottom: 1px solid white; |
|||
} |
|||
#qunit-testresult .module-name { |
|||
font-weight: bold; |
|||
} |
|||
|
|||
/** Fixture */ |
|||
|
|||
#qunit-fixture { |
|||
position: absolute; |
|||
top: -10000px; |
|||
left: -10000px; |
|||
width: 1000px; |
|||
height: 1000px; |
|||
} |
@ -1,52 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Test Markdown</title> |
|||
|
|||
<link rel="stylesheet" href="../css/reveal.min.css"> |
|||
<link rel="stylesheet" href="qunit-1.12.0.css"> |
|||
</head> |
|||
|
|||
<body style="overflow: auto;"> |
|||
|
|||
<div id="qunit"></div> |
|||
<div id="qunit-fixture"></div> |
|||
|
|||
<div class="reveal" style="display: none;"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<!-- <section data-markdown="example.md" data-separator="^\n\n\n" data-vertical="^\n\n"></section> --> |
|||
|
|||
<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes --> |
|||
<section data-markdown data-separator="^\n---\n$" data-vertical="^\n--\n$"> |
|||
<script type="text/template"> |
|||
## Slide 1.1 |
|||
|
|||
-- |
|||
|
|||
## Slide 1.2 |
|||
|
|||
--- |
|||
|
|||
## Slide 2 |
|||
</script> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../lib/js/head.min.js"></script> |
|||
<script src="../js/reveal.min.js"></script> |
|||
<script src="../plugin/markdown/marked.js"></script> |
|||
<script src="../plugin/markdown/markdown.js"></script> |
|||
<script src="qunit-1.12.0.js"></script> |
|||
|
|||
<script src="test-markdown.js"></script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,15 +0,0 @@ |
|||
|
|||
|
|||
Reveal.addEventListener( 'ready', function() { |
|||
|
|||
QUnit.module( 'Markdown' ); |
|||
|
|||
test( 'Vertical separator', function() { |
|||
strictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' ); |
|||
}); |
|||
|
|||
|
|||
} ); |
|||
|
|||
Reveal.initialize(); |
|||
|
@ -1,62 +0,0 @@ |
|||
<!doctype html> |
|||
<html lang="en"> |
|||
|
|||
<head> |
|||
<meta charset="utf-8"> |
|||
|
|||
<title>reveal.js - Tests</title> |
|||
|
|||
<link rel="stylesheet" href="../css/reveal.min.css"> |
|||
<link rel="stylesheet" href="qunit-1.12.0.css"> |
|||
</head> |
|||
|
|||
<body style="overflow: auto;"> |
|||
|
|||
<div id="qunit"></div> |
|||
<div id="qunit-fixture"></div> |
|||
|
|||
<div class="reveal" style="display: none;"> |
|||
|
|||
<div class="slides"> |
|||
|
|||
<section> |
|||
<h1>1</h1> |
|||
</section> |
|||
|
|||
<section> |
|||
<section> |
|||
<h1>2.1</h1> |
|||
</section> |
|||
<section> |
|||
<h1>2.2</h1> |
|||
</section> |
|||
<section> |
|||
<h1>2.3</h1> |
|||
</section> |
|||
</section> |
|||
|
|||
<section> |
|||
<h1>4</h1> |
|||
<ul> |
|||
<li class="fragment">4.1</li> |
|||
<li class="fragment">4.2</li> |
|||
<li class="fragment">4.3</li> |
|||
</ul> |
|||
</section> |
|||
|
|||
<section> |
|||
<h1>4</h1> |
|||
</section> |
|||
|
|||
</div> |
|||
|
|||
</div> |
|||
|
|||
<script src="../lib/js/head.min.js"></script> |
|||
<script src="../js/reveal.min.js"></script> |
|||
<script src="qunit-1.12.0.js"></script> |
|||
|
|||
<script src="test.js"></script> |
|||
|
|||
</body> |
|||
</html> |
@ -1,353 +0,0 @@ |
|||
|
|||
// These tests expect the DOM to contain a presentation
|
|||
// with the following slide structure:
|
|||
//
|
|||
// 1
|
|||
// 2 - Three sub-slides
|
|||
// 3 - Three fragment elements
|
|||
// 4
|
|||
|
|||
|
|||
Reveal.addEventListener( 'ready', function() { |
|||
|
|||
|
|||
// ---------------------------------------------------------------
|
|||
// API TESTS
|
|||
|
|||
QUnit.module( 'API' ); |
|||
|
|||
test( 'Reveal.isReady', function() { |
|||
strictEqual( Reveal.isReady(), true, 'returns true' ); |
|||
}); |
|||
|
|||
test( 'Reveal.isOverview', function() { |
|||
strictEqual( Reveal.isOverview(), false, 'false by default' ); |
|||
|
|||
Reveal.toggleOverview(); |
|||
strictEqual( Reveal.isOverview(), true, 'true after toggling on' ); |
|||
|
|||
Reveal.toggleOverview(); |
|||
strictEqual( Reveal.isOverview(), false, 'false after toggling off' ); |
|||
}); |
|||
|
|||
test( 'Reveal.isPaused', function() { |
|||
strictEqual( Reveal.isPaused(), false, 'false by default' ); |
|||
|
|||
Reveal.togglePause(); |
|||
strictEqual( Reveal.isPaused(), true, 'true after pausing' ); |
|||
|
|||
Reveal.togglePause(); |
|||
strictEqual( Reveal.isPaused(), false, 'false after resuming' ); |
|||
}); |
|||
|
|||
test( 'Reveal.isFirstSlide', function() { |
|||
Reveal.slide( 0, 0 ); |
|||
strictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' ); |
|||
|
|||
Reveal.slide( 1, 0 ); |
|||
strictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' ); |
|||
|
|||
Reveal.slide( 0, 0 ); |
|||
strictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' ); |
|||
}); |
|||
|
|||
test( 'Reveal.isLastSlide', function() { |
|||
Reveal.slide( 0, 0 ); |
|||
strictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' ); |
|||
|
|||
var lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1; |
|||
|
|||
Reveal.slide( lastSlideIndex, 0 ); |
|||
strictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( ', 0+ lastSlideIndex +' )' ); |
|||
|
|||
Reveal.slide( 0, 0 ); |
|||
strictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' ); |
|||
}); |
|||
|
|||
test( 'Reveal.getIndices', function() { |
|||
var indices = Reveal.getIndices(); |
|||
|
|||
ok( typeof indices.hasOwnProperty( 'h' ), 'h exists' ); |
|||
ok( typeof indices.hasOwnProperty( 'v' ), 'v exists' ); |
|||
ok( typeof indices.hasOwnProperty( 'f' ), 'f exists' ); |
|||
|
|||
Reveal.slide( 1, 0 ); |
|||
ok( Reveal.getIndices().h === 1 && Reveal.getIndices().v === 0, 'h 1, v 0' ); |
|||
|
|||
Reveal.slide( 1, 2 ); |
|||
ok( Reveal.getIndices().h === 1 && Reveal.getIndices().v === 2, 'h 1, v 2' ); |
|||
|
|||
Reveal.slide( 0, 0 ); |
|||
}); |
|||
|
|||
test( 'Reveal.getSlide', function() { |
|||
var firstSlide = document.querySelector( '.reveal .slides>section:first-child' ); |
|||
|
|||
equal( Reveal.getSlide( 0 ), firstSlide, 'gets correct first slide' ); |
|||
|
|||
strictEqual( Reveal.getSlide( 100 ), undefined, 'returns undefined when slide can\'t be found' ); |
|||
}); |
|||
|
|||
test( 'Reveal.getPreviousSlide/getCurrentSlide', function() { |
|||
Reveal.slide( 0, 0 ); |
|||
Reveal.slide( 1, 0 ); |
|||
|
|||
var firstSlide = document.querySelector( '.reveal .slides>section:first-child' ); |
|||
var secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' ); |
|||
|
|||
equal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' ); |
|||
equal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' ); |
|||
}); |
|||
|
|||
test( 'Reveal.getScale', function() { |
|||
ok( typeof Reveal.getScale() === 'number', 'has scale' ); |
|||
}); |
|||
|
|||
test( 'Reveal.getConfig', function() { |
|||
ok( typeof Reveal.getConfig() === 'object', 'has config' ); |
|||
}); |
|||
|
|||
test( 'Reveal.configure', function() { |
|||
strictEqual( Reveal.getConfig().loop, false, '"loop" is false to start with' ); |
|||
|
|||
Reveal.configure({ loop: true }); |
|||
strictEqual( Reveal.getConfig().loop, true, '"loop" has changed to true' ); |
|||
|
|||
Reveal.configure({ loop: false, customTestValue: 1 }); |
|||
strictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' ); |
|||
}); |
|||
|
|||
test( 'Reveal.availableRoutes', function() { |
|||
Reveal.slide( 0, 0 ); |
|||
deepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' ); |
|||
|
|||
Reveal.slide( 1, 0 ); |
|||
deepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' ); |
|||
}); |
|||
|
|||
test( 'Reveal.next', function() { |
|||
Reveal.slide( 0, 0 ); |
|||
|
|||
// Step through the vertical child slides
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } ); |
|||
|
|||
// There's fragments on this slide
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 3 } ); |
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } ); |
|||
|
|||
// We're at the end, this should have no effect
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } ); |
|||
}); |
|||
|
|||
|
|||
// ---------------------------------------------------------------
|
|||
// FRAGMENT TESTS
|
|||
|
|||
QUnit.module( 'Fragments' ); |
|||
|
|||
test( 'Sliding to fragments', function() { |
|||
Reveal.slide( 2, 0, 0 ); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' ); |
|||
|
|||
Reveal.slide( 2, 0, 2 ); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' ); |
|||
|
|||
Reveal.slide( 2, 0, 1 ); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' ); |
|||
}); |
|||
|
|||
test( 'Stepping through fragments', function() { |
|||
Reveal.slide( 2, 0, 0 ); |
|||
|
|||
// forwards:
|
|||
|
|||
Reveal.next(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'next() goes to next fragment' ); |
|||
|
|||
Reveal.right(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'right() goes to next fragment' ); |
|||
|
|||
Reveal.down(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 3 }, 'down() goes to next fragment' ); |
|||
|
|||
Reveal.down(); // moves to f #3
|
|||
|
|||
// backwards:
|
|||
|
|||
Reveal.prev(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' ); |
|||
|
|||
Reveal.left(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' ); |
|||
|
|||
Reveal.up(); |
|||
deepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'left() goes to prev fragment' ); |
|||
}); |
|||
|
|||
asyncTest( 'fragmentshown event', function() { |
|||
expect( 2 ); |
|||
|
|||
var _onEvent = function( event ) { |
|||
ok( true, 'event fired' ); |
|||
} |
|||
|
|||
Reveal.addEventListener( 'fragmentshown', _onEvent ); |
|||
|
|||
Reveal.slide( 2, 0 ); |
|||
Reveal.slide( 2, 0 ); // should do nothing
|
|||
Reveal.slide( 2, 0, 0 ); // should do nothing
|
|||
Reveal.next(); |
|||
Reveal.next(); |
|||
Reveal.prev(); // shouldn't fire fragmentshown
|
|||
|
|||
start(); |
|||
|
|||
Reveal.removeEventListener( 'fragmentshown', _onEvent ); |
|||
}); |
|||
|
|||
asyncTest( 'fragmenthidden event', function() { |
|||
expect( 2 ); |
|||
|
|||
var _onEvent = function( event ) { |
|||
ok( true, 'event fired' ); |
|||
} |
|||
|
|||
Reveal.addEventListener( 'fragmenthidden', _onEvent ); |
|||
|
|||
Reveal.slide( 2, 0, 2 ); |
|||
Reveal.slide( 2, 0, 2 ); // should do nothing
|
|||
Reveal.prev(); |
|||
Reveal.prev(); |
|||
Reveal.next(); // shouldn't fire fragmenthidden
|
|||
|
|||
start(); |
|||
|
|||
Reveal.removeEventListener( 'fragmenthidden', _onEvent ); |
|||
}); |
|||
|
|||
|
|||
// ---------------------------------------------------------------
|
|||
// CONFIGURATION VALUES
|
|||
|
|||
QUnit.module( 'Configuration' ); |
|||
|
|||
test( 'Controls', function() { |
|||
var controlsElement = document.querySelector( '.reveal>.controls' ); |
|||
|
|||
Reveal.configure({ controls: false }); |
|||
equal( controlsElement.style.display, 'none', 'controls are hidden' ); |
|||
|
|||
Reveal.configure({ controls: true }); |
|||
equal( controlsElement.style.display, 'block', 'controls are visible' ); |
|||
}); |
|||
|
|||
test( 'Progress', function() { |
|||
var progressElement = document.querySelector( '.reveal>.progress' ); |
|||
|
|||
Reveal.configure({ progress: false }); |
|||
equal( progressElement.style.display, 'none', 'progress are hidden' ); |
|||
|
|||
Reveal.configure({ progress: true }); |
|||
equal( progressElement.style.display, 'block', 'progress are visible' ); |
|||
}); |
|||
|
|||
test( 'Loop', function() { |
|||
Reveal.configure({ loop: true }); |
|||
|
|||
Reveal.slide( 0, 0 ); |
|||
|
|||
Reveal.left(); |
|||
notEqual( Reveal.getIndices().h, 0, 'looped from start to end' ); |
|||
|
|||
Reveal.right(); |
|||
equal( Reveal.getIndices().h, 0, 'looped from end to start' ); |
|||
|
|||
Reveal.configure({ loop: false }); |
|||
}); |
|||
|
|||
|
|||
// ---------------------------------------------------------------
|
|||
// EVENT TESTS
|
|||
|
|||
QUnit.module( 'Events' ); |
|||
|
|||
asyncTest( 'slidechanged', function() { |
|||
expect( 3 ); |
|||
|
|||
var _onEvent = function( event ) { |
|||
ok( true, 'event fired' ); |
|||
} |
|||
|
|||
Reveal.addEventListener( 'slidechanged', _onEvent ); |
|||
|
|||
Reveal.slide( 1, 0 ); // should trigger
|
|||
Reveal.slide( 1, 0 ); // should do nothing
|
|||
Reveal.next(); // should trigger
|
|||
Reveal.slide( 3, 0 ); // should trigger
|
|||
Reveal.next(); // should do nothing
|
|||
|
|||
start(); |
|||
|
|||
Reveal.removeEventListener( 'slidechanged', _onEvent ); |
|||
|
|||
}); |
|||
|
|||
asyncTest( 'paused', function() { |
|||
expect( 1 ); |
|||
|
|||
var _onEvent = function( event ) { |
|||
ok( true, 'event fired' ); |
|||
} |
|||
|
|||
Reveal.addEventListener( 'paused', _onEvent ); |
|||
|
|||
Reveal.togglePause(); |
|||
Reveal.togglePause(); |
|||
|
|||
start(); |
|||
|
|||
Reveal.removeEventListener( 'paused', _onEvent ); |
|||
}); |
|||
|
|||
asyncTest( 'resumed', function() { |
|||
expect( 1 ); |
|||
|
|||
var _onEvent = function( event ) { |
|||
ok( true, 'event fired' ); |
|||
} |
|||
|
|||
Reveal.addEventListener( 'resumed', _onEvent ); |
|||
|
|||
Reveal.togglePause(); |
|||
Reveal.togglePause(); |
|||
|
|||
start(); |
|||
|
|||
Reveal.removeEventListener( 'resumed', _onEvent ); |
|||
}); |
|||
|
|||
|
|||
} ); |
|||
|
|||
Reveal.initialize(); |
|||
|