diff options
author | Hakim El Hattab | 2013-10-13 15:25:13 -0400 |
---|---|---|
committer | Hakim El Hattab | 2013-10-13 15:25:13 -0400 |
commit | 29c5af84bec03273b710e65e0d9f3072b96f5ce6 (patch) | |
tree | f5c301d3ad0f499b86730786267b8f8e8125695d /js/reveal.js | |
parent | 6aaf88aae763588df4983fb255db08eaa1a8e60e (diff) |
support moz and webkit prefixed requestAnimationFrame
Diffstat (limited to 'js/reveal.js')
-rw-r--r-- | js/reveal.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/js/reveal.js b/js/reveal.js index 19c79c8..8fae129 100644 --- a/js/reveal.js +++ b/js/reveal.js @@ -221,7 +221,8 @@ var Reveal = (function(){ 'OTransform' in document.body.style || 'transform' in document.body.style; - features.requestAnimationFrame = typeof window.requestAnimationFrame === 'function'; + features.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame; + features.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function'; features.canvas = !!document.createElement( 'canvas' ).getContext; @@ -2866,7 +2867,7 @@ var Reveal = (function(){ this.render(); if( this.playing ) { - window.requestAnimationFrame( this.animate.bind( this ) ); + features.requestAnimationFrameMethod.call( window, this.animate.bind( this ) ); } }; @@ -2890,8 +2891,8 @@ var Reveal = (function(){ // Solid background color this.context.beginPath(); - this.context.arc( x, y, radius, 0, Math.PI * 2, false ); - this.context.fillStyle = 'rgba(0,0,0,0.2)'; + this.context.arc( x, y, radius + 2, 0, Math.PI * 2, false ); + this.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )'; this.context.fill(); // Draw progress track |