summaryrefslogtreecommitdiffhomepage
path: root/js/reveal.js
diff options
context:
space:
mode:
authorHakim El Hattab2013-07-26 09:33:25 -0400
committerHakim El Hattab2013-07-26 09:33:25 -0400
commit8bf19ab61f8eb0e527348110f3923a33ea937eaa (patch)
treee5449b7609d77cc90e9430e877b5f8f88cdf7b6f /js/reveal.js
parent4c491e5eccd8533f45c4d3d18a04ac545babe351 (diff)
restore rolling links.. but default to off #532
Diffstat (limited to 'js/reveal.js')
-rw-r--r--js/reveal.js55
1 files changed, 55 insertions, 0 deletions
diff --git a/js/reveal.js b/js/reveal.js
index 107b67b..41d3535 100644
--- a/js/reveal.js
+++ b/js/reveal.js
@@ -67,6 +67,9 @@ var Reveal = (function(){
// Enable slide navigation via mouse wheel
mouseWheel: false,
+ // Apply a 3D roll to links on hover
+ rollingLinks: false,
+
// Opens links in an iframe preview overlay
previewLinks: false,
@@ -475,6 +478,14 @@ var Reveal = (function(){
document.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );
}
+ // Rolling 3D links
+ if( config.rollingLinks ) {
+ enableRollingLinks();
+ }
+ else {
+ disableRollingLinks();
+ }
+
// Iframe link previews
if( config.previewLinks ) {
enablePreviewLinks();
@@ -698,6 +709,50 @@ var Reveal = (function(){
}
/**
+ * Wrap all links in 3D goodness.
+ */
+ function enableRollingLinks() {
+
+ if( supports3DTransforms && !( 'msPerspective' in document.body.style ) ) {
+ var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a:not(.image)' );
+
+ for( var i = 0, len = anchors.length; i < len; i++ ) {
+ var anchor = anchors[i];
+
+ if( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {
+ var span = document.createElement('span');
+ span.setAttribute('data-title', anchor.text);
+ span.innerHTML = anchor.innerHTML;
+
+ anchor.classList.add( 'roll' );
+ anchor.innerHTML = '';
+ anchor.appendChild(span);
+ }
+ }
+ }
+
+ }
+
+ /**
+ * Unwrap all 3D links.
+ */
+ function disableRollingLinks() {
+
+ var anchors = document.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );
+
+ for( var i = 0, len = anchors.length; i < len; i++ ) {
+ var anchor = anchors[i];
+ var span = anchor.querySelector( 'span' );
+
+ if( span ) {
+ anchor.classList.remove( 'roll' );
+ anchor.innerHTML = span.innerHTML;
+ }
+ }
+
+ }
+
+ /**
* Bind preview frame links.
*/
function enablePreviewLinks( selector ) {