new paused mode feature (closes #144), controls and progress DOM elements are no longer required in HTML
This commit is contained in:
parent
84b69b6b9a
commit
f22e5f85e8
|
@ -410,6 +410,7 @@ body {
|
||||||
margin-top: -320px;
|
margin-top: -320px;
|
||||||
padding: 20px 0px;
|
padding: 20px 0px;
|
||||||
overflow: visible;
|
overflow: visible;
|
||||||
|
z-index: 1;
|
||||||
|
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
|
||||||
|
@ -921,6 +922,33 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*********************************************
|
||||||
|
* PAUSED MODE
|
||||||
|
*********************************************/
|
||||||
|
|
||||||
|
.reveal .pause-overlay {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background: black;
|
||||||
|
visibility: hidden;
|
||||||
|
opacity: 0;
|
||||||
|
z-index: 100;
|
||||||
|
|
||||||
|
-webkit-transition: all 1s ease;
|
||||||
|
-moz-transition: all 1s ease;
|
||||||
|
-ms-transition: all 1s ease;
|
||||||
|
-o-transition: all 1s ease;
|
||||||
|
transition: all 1s ease;
|
||||||
|
}
|
||||||
|
.reveal.paused .pause-overlay {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*********************************************
|
/*********************************************
|
||||||
* FALLBACK
|
* FALLBACK
|
||||||
*********************************************/
|
*********************************************/
|
||||||
|
@ -945,10 +973,10 @@ body {
|
||||||
|
|
||||||
|
|
||||||
/*********************************************
|
/*********************************************
|
||||||
* DEFAULT STATES
|
* BACKGROUND STATES
|
||||||
*********************************************/
|
*********************************************/
|
||||||
|
|
||||||
.state-background {
|
.reveal .state-background {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
@ -960,13 +988,13 @@ body {
|
||||||
-o-transition: background 800ms ease;
|
-o-transition: background 800ms ease;
|
||||||
transition: background 800ms ease;
|
transition: background 800ms ease;
|
||||||
}
|
}
|
||||||
.alert .state-background {
|
.alert .reveal .state-background {
|
||||||
background: rgba( 200, 50, 30, 0.6 );
|
background: rgba( 200, 50, 30, 0.6 );
|
||||||
}
|
}
|
||||||
.soothe .state-background {
|
.soothe .reveal .state-background {
|
||||||
background: rgba( 50, 200, 90, 0.4 );
|
background: rgba( 50, 200, 90, 0.4 );
|
||||||
}
|
}
|
||||||
.blackout .state-background {
|
.blackout .reveal .state-background {
|
||||||
background: rgba( 0, 0, 0, 0.6 );
|
background: rgba( 0, 0, 0, 0.6 );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
24
index.html
24
index.html
|
@ -34,9 +34,6 @@
|
||||||
|
|
||||||
<div class="reveal">
|
<div class="reveal">
|
||||||
|
|
||||||
<!-- Used to fade in a background when a specific slide state is reached -->
|
|
||||||
<div class="state-background"></div>
|
|
||||||
|
|
||||||
<!-- Any section element inside of this container is displayed as a slide -->
|
<!-- Any section element inside of this container is displayed as a slide -->
|
||||||
<div class="slides">
|
<div class="slides">
|
||||||
<section>
|
<section>
|
||||||
|
@ -278,6 +275,14 @@ function linkify( selector ) {
|
||||||
</script>
|
</script>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
<section>
|
||||||
|
<h2>Take a Moment</h2>
|
||||||
|
<p>
|
||||||
|
Press b or period on your keyboard to enter the 'paused' mode. This mode is helpful when you want to take disctracting slides off the screen
|
||||||
|
during a presentaion.
|
||||||
|
</p>
|
||||||
|
</section>
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>Stellar Links</h2>
|
<h2>Stellar Links</h2>
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -311,17 +316,6 @@ function linkify( selector ) {
|
||||||
</section>
|
</section>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- The navigational controls UI -->
|
|
||||||
<aside class="controls">
|
|
||||||
<a class="left" href="#">◄</a>
|
|
||||||
<a class="right" href="#">►</a>
|
|
||||||
<a class="up" href="#">▲</a>
|
|
||||||
<a class="down" href="#">▼</a>
|
|
||||||
</aside>
|
|
||||||
|
|
||||||
<!-- Presentation progress bar -->
|
|
||||||
<div class="progress"><span></span></div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="lib/js/head.min.js"></script>
|
<script src="lib/js/head.min.js"></script>
|
||||||
|
@ -346,7 +340,7 @@ function linkify( selector ) {
|
||||||
{ src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
{ src: 'lib/js/showdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
||||||
{ src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
{ src: 'lib/js/data-markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
||||||
{ src: '/socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
|
{ src: '/socket.io/socket.io.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
|
||||||
{ src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } },
|
{ src: 'plugin/speakernotes/client.js', async: true, condition: function() { return window.location.host === 'localhost:1947'; } }
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
154
js/reveal.js
154
js/reveal.js
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* reveal.js 2.1 r28
|
* reveal.js 2.1 r29
|
||||||
* http://lab.hakim.se/reveal-js
|
* http://lab.hakim.se/reveal-js
|
||||||
* MIT licensed
|
* MIT licensed
|
||||||
*
|
*
|
||||||
|
@ -116,9 +116,61 @@ var Reveal = (function(){
|
||||||
// Copy options over to our config object
|
// Copy options over to our config object
|
||||||
extend( config, options );
|
extend( config, options );
|
||||||
|
|
||||||
// Cache references to DOM elements
|
// Make sure we've got all the DOM elements we need
|
||||||
|
setupDOM();
|
||||||
|
|
||||||
|
// Hide the address bar in mobile browsers
|
||||||
|
hideAddressBar();
|
||||||
|
|
||||||
|
// Loads the dependencies and continues to #start() once done
|
||||||
|
load();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Finds and stores references to DOM elements which are
|
||||||
|
* required by the presentation. If a required element is
|
||||||
|
* not found, it is created.
|
||||||
|
*/
|
||||||
|
function setupDOM() {
|
||||||
|
// Cache references to key DOM elements
|
||||||
dom.theme = document.querySelector( '#theme' );
|
dom.theme = document.querySelector( '#theme' );
|
||||||
dom.wrapper = document.querySelector( '.reveal' );
|
dom.wrapper = document.querySelector( '.reveal' );
|
||||||
|
|
||||||
|
// Progress bar
|
||||||
|
if( !dom.wrapper.querySelector( '.progress' ) && config.progress ) {
|
||||||
|
var progressElement = document.createElement( 'div' );
|
||||||
|
progressElement.classList.add( 'progress' );
|
||||||
|
progressElement.innerHTML = '<span></span>';
|
||||||
|
dom.wrapper.appendChild( progressElement );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Arrow controls
|
||||||
|
if( !dom.wrapper.querySelector( '.controls' ) && config.controls ) {
|
||||||
|
var controlsElement = document.createElement( 'aside' );
|
||||||
|
controlsElement.classList.add( 'controls' );
|
||||||
|
controlsElement.innerHTML = '<a class="left" href="#">◄</a>' +
|
||||||
|
'<a class="right" href="#">►</a>' +
|
||||||
|
'<a class="up" href="#">▲</a>' +
|
||||||
|
'<a class="down" href="#">▼</a>';
|
||||||
|
dom.wrapper.appendChild( controlsElement );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Presentation background element
|
||||||
|
if( !dom.wrapper.querySelector( '.state-background' ) ) {
|
||||||
|
var backgroundElement = document.createElement( 'div' );
|
||||||
|
backgroundElement.classList.add( 'state-background' );
|
||||||
|
dom.wrapper.appendChild( backgroundElement );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Overlay graphic which is displayed during the paused mode
|
||||||
|
if( !dom.wrapper.querySelector( '.pause-overlay' ) ) {
|
||||||
|
var pausedElement = document.createElement( 'div' );
|
||||||
|
pausedElement.classList.add( 'pause-overlay' );
|
||||||
|
dom.wrapper.appendChild( pausedElement );
|
||||||
|
}
|
||||||
|
|
||||||
|
// Cache references to elements
|
||||||
dom.progress = document.querySelector( '.reveal .progress' );
|
dom.progress = document.querySelector( '.reveal .progress' );
|
||||||
dom.progressbar = document.querySelector( '.reveal .progress span' );
|
dom.progressbar = document.querySelector( '.reveal .progress span' );
|
||||||
|
|
||||||
|
@ -129,11 +181,12 @@ var Reveal = (function(){
|
||||||
dom.controlsUp = document.querySelector( '.reveal .controls .up' );
|
dom.controlsUp = document.querySelector( '.reveal .controls .up' );
|
||||||
dom.controlsDown = document.querySelector( '.reveal .controls .down' );
|
dom.controlsDown = document.querySelector( '.reveal .controls .down' );
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Loads the dependencies and continues to #start() once done
|
/**
|
||||||
load();
|
* Hides the address bar if we're on a mobile device.
|
||||||
|
*/
|
||||||
// Set up hiding of the browser address bar
|
function hideAddressBar() {
|
||||||
if( navigator.userAgent.match( /(iphone|ipod|android)/i ) ) {
|
if( navigator.userAgent.match( /(iphone|ipod|android)/i ) ) {
|
||||||
// Give the page some scrollable overflow
|
// Give the page some scrollable overflow
|
||||||
document.documentElement.style.overflow = 'scroll';
|
document.documentElement.style.overflow = 'scroll';
|
||||||
|
@ -143,7 +196,6 @@ var Reveal = (function(){
|
||||||
window.addEventListener( 'load', removeAddressBar, false );
|
window.addEventListener( 'load', removeAddressBar, false );
|
||||||
window.addEventListener( 'orientationchange', removeAddressBar, false );
|
window.addEventListener( 'orientationchange', removeAddressBar, false );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -378,9 +430,11 @@ var Reveal = (function(){
|
||||||
// end
|
// end
|
||||||
case 35: navigateTo( Number.MAX_VALUE ); break;
|
case 35: navigateTo( Number.MAX_VALUE ); break;
|
||||||
// space
|
// space
|
||||||
case 32: overviewIsActive() ? deactivateOverview() : navigateNext(); break;
|
case 32: isOverviewActive() ? deactivateOverview() : navigateNext(); break;
|
||||||
// return
|
// return
|
||||||
case 13: overviewIsActive() ? deactivateOverview() : triggered = false; break;
|
case 13: isOverviewActive() ? deactivateOverview() : triggered = false; break;
|
||||||
|
// b, period
|
||||||
|
case 66: case 190: togglePause(); break;
|
||||||
default:
|
default:
|
||||||
triggered = false;
|
triggered = false;
|
||||||
}
|
}
|
||||||
|
@ -532,7 +586,7 @@ var Reveal = (function(){
|
||||||
function onOverviewSlideClicked( event ) {
|
function onOverviewSlideClicked( event ) {
|
||||||
// TODO There's a bug here where the event listeners are not
|
// TODO There's a bug here where the event listeners are not
|
||||||
// removed after deactivating the overview.
|
// removed after deactivating the overview.
|
||||||
if( overviewIsActive() ) {
|
if( isOverviewActive() ) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
|
||||||
deactivateOverview();
|
deactivateOverview();
|
||||||
|
@ -652,16 +706,66 @@ var Reveal = (function(){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggles the slide overview mode on and off.
|
||||||
|
*
|
||||||
|
* @param {Boolean} override Optional flag which overrides the
|
||||||
|
* toggle logic and forcibly sets the desired state. True means
|
||||||
|
* overview is open, false means it's closed.
|
||||||
|
*/
|
||||||
|
function toggleOverview( override ) {
|
||||||
|
if( typeof override === 'boolean' ) {
|
||||||
|
override ? activateOverview() : deactivateOverview();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
isOverviewActive() ? deactivateOverview() : activateOverview();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if the overview is currently active.
|
* Checks if the overview is currently active.
|
||||||
*
|
*
|
||||||
* @return {Boolean} true if the overview is active,
|
* @return {Boolean} true if the overview is active,
|
||||||
* false otherwise
|
* false otherwise
|
||||||
*/
|
*/
|
||||||
function overviewIsActive() {
|
function isOverviewActive() {
|
||||||
return dom.wrapper.classList.contains( 'overview' );
|
return dom.wrapper.classList.contains( 'overview' );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enters the paused mode which fades everything on screen to
|
||||||
|
* black.
|
||||||
|
*/
|
||||||
|
function pause() {
|
||||||
|
dom.wrapper.classList.add( 'paused' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Exits from the paused mode.
|
||||||
|
*/
|
||||||
|
function resume() {
|
||||||
|
dom.wrapper.classList.remove( 'paused' );
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Toggles the paused mode on and off.
|
||||||
|
*/
|
||||||
|
function togglePause() {
|
||||||
|
if( isPaused() ) {
|
||||||
|
resume();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
pause();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if we are currently in the paused mode.
|
||||||
|
*/
|
||||||
|
function isPaused() {
|
||||||
|
return dom.wrapper.classList.contains( 'paused' );
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates one dimension of slides by showing the slide
|
* Updates one dimension of slides by showing the slide
|
||||||
* with the specified index.
|
* with the specified index.
|
||||||
|
@ -701,7 +805,7 @@ var Reveal = (function(){
|
||||||
|
|
||||||
// Optimization; hide all slides that are three or more steps
|
// Optimization; hide all slides that are three or more steps
|
||||||
// away from the present slide
|
// away from the present slide
|
||||||
if( overviewIsActive() === false ) {
|
if( isOverviewActive() === false ) {
|
||||||
// The distance loops so that it measures 1 between the first
|
// The distance loops so that it measures 1 between the first
|
||||||
// and last slides
|
// and last slides
|
||||||
var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0;
|
var distance = Math.abs( ( index - i ) % ( slidesLength - 3 ) ) || 0;
|
||||||
|
@ -801,7 +905,7 @@ var Reveal = (function(){
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the overview is active, re-activate it to update positions
|
// If the overview is active, re-activate it to update positions
|
||||||
if( overviewIsActive() ) {
|
if( isOverviewActive() ) {
|
||||||
activateOverview();
|
activateOverview();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1024,28 +1128,28 @@ var Reveal = (function(){
|
||||||
|
|
||||||
function navigateLeft() {
|
function navigateLeft() {
|
||||||
// Prioritize hiding fragments
|
// Prioritize hiding fragments
|
||||||
if( overviewIsActive() || previousFragment() === false ) {
|
if( isOverviewActive() || previousFragment() === false ) {
|
||||||
slide( indexh - 1, 0 );
|
slide( indexh - 1, 0 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function navigateRight() {
|
function navigateRight() {
|
||||||
// Prioritize revealing fragments
|
// Prioritize revealing fragments
|
||||||
if( overviewIsActive() || nextFragment() === false ) {
|
if( isOverviewActive() || nextFragment() === false ) {
|
||||||
slide( indexh + 1, 0 );
|
slide( indexh + 1, 0 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function navigateUp() {
|
function navigateUp() {
|
||||||
// Prioritize hiding fragments
|
// Prioritize hiding fragments
|
||||||
if( overviewIsActive() || previousFragment() === false ) {
|
if( isOverviewActive() || previousFragment() === false ) {
|
||||||
slide( indexh, indexv - 1 );
|
slide( indexh, indexv - 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function navigateDown() {
|
function navigateDown() {
|
||||||
// Prioritize revealing fragments
|
// Prioritize revealing fragments
|
||||||
if( overviewIsActive() || nextFragment() === false ) {
|
if( isOverviewActive() || nextFragment() === false ) {
|
||||||
slide( indexh, indexv + 1 );
|
slide( indexh, indexv + 1 );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1089,22 +1193,6 @@ var Reveal = (function(){
|
||||||
cueAutoSlide();
|
cueAutoSlide();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Toggles the slide overview mode on and off.
|
|
||||||
*
|
|
||||||
* @param {Boolean} override Optional flag which overrides the
|
|
||||||
* toggle logic and forcibly sets the desired state. True means
|
|
||||||
* overview is open, false means it's closed.
|
|
||||||
*/
|
|
||||||
function toggleOverview( override ) {
|
|
||||||
if( typeof override === 'boolean' ) {
|
|
||||||
override ? activateOverview() : deactivateOverview();
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
overviewIsActive() ? deactivateOverview() : activateOverview();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Expose some methods publicly
|
// Expose some methods publicly
|
||||||
return {
|
return {
|
||||||
initialize: initialize,
|
initialize: initialize,
|
||||||
|
|
136
js/reveal.min.js
vendored
136
js/reveal.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user