progress bar is now a div and uses the same transition + easing as slides (fixes #6)
This commit is contained in:
parent
91c3056a62
commit
9065114ef0
@ -6,6 +6,7 @@ Curious about how this looks in action? [Check out the demo page](http://lab.hak
|
|||||||
|
|
||||||
# Examples
|
# Examples
|
||||||
|
|
||||||
|
* http://lab.hakim.se/reveal-js/ (original)
|
||||||
* http://www.ideapolisagency.com/ from [@achrafkassioui](http://twitter.com/achrafkassioui)
|
* http://www.ideapolisagency.com/ from [@achrafkassioui](http://twitter.com/achrafkassioui)
|
||||||
* http://lucienfrelin.com/ from [@lucienfrelin](http://twitter.com/lucienfrelin)
|
* http://lucienfrelin.com/ from [@lucienfrelin](http://twitter.com/lucienfrelin)
|
||||||
|
|
||||||
|
32
css/main.css
32
css/main.css
@ -447,33 +447,29 @@ section img {
|
|||||||
* PROGRESS BAR
|
* PROGRESS BAR
|
||||||
*********************************************/
|
*********************************************/
|
||||||
|
|
||||||
progress::-webkit-progress-bar {
|
.progress {
|
||||||
background: rgba(0,0,0,0.2);
|
|
||||||
}
|
|
||||||
|
|
||||||
progress::-moz-progress-bar {
|
|
||||||
background: hsl(185, 85%, 50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
progress::-webkit-progress-value {
|
|
||||||
background: hsl(185, 85%, 50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
progress {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
display: none;
|
display: none;
|
||||||
height: 4px;
|
height: 4px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
bottom: 0;
|
bottom: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
|
|
||||||
border: 0;
|
background: rgba(0,0,0,0.2);
|
||||||
outline: 0;
|
|
||||||
background: none;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.progress span {
|
||||||
|
display: block;
|
||||||
|
background: hsl(185, 85%, 50%);
|
||||||
|
height: 100%;
|
||||||
|
width: 0px;
|
||||||
|
|
||||||
|
-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);
|
||||||
|
-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);
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************
|
/*********************************************
|
||||||
* ROLLING LINKS
|
* ROLLING LINKS
|
||||||
*********************************************/
|
*********************************************/
|
||||||
|
@ -179,7 +179,7 @@ linkify( 'a' );
|
|||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<!-- Displays presentation progress, max value changes via JS to reflect # of slides -->
|
<!-- Displays presentation progress, max value changes via JS to reflect # of slides -->
|
||||||
<progress min=0 max=100 value=0></progress>
|
<div class="progress"><span></span></div>
|
||||||
|
|
||||||
<script src="js/reveal.js"></script>
|
<script src="js/reveal.js"></script>
|
||||||
<script src="lib/highlight.js"></script>
|
<script src="lib/highlight.js"></script>
|
||||||
@ -201,5 +201,7 @@ linkify( 'a' );
|
|||||||
hljs.initHighlightingOnLoad();
|
hljs.initHighlightingOnLoad();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
@ -94,7 +94,8 @@ var Reveal = (function(){
|
|||||||
*/
|
*/
|
||||||
function initialize( options ) {
|
function initialize( options ) {
|
||||||
// Cache references to DOM elements
|
// Cache references to DOM elements
|
||||||
dom.progress = document.querySelector( 'body>progress' );
|
dom.progress = document.querySelector( 'body>.progress' );
|
||||||
|
dom.progressbar = document.querySelector( 'body>.progress span' );
|
||||||
dom.controls = document.querySelector( '.controls' );
|
dom.controls = document.querySelector( '.controls' );
|
||||||
dom.controlsLeft = document.querySelector( '.controls .left' );
|
dom.controlsLeft = document.querySelector( '.controls .left' );
|
||||||
dom.controlsRight = document.querySelector( '.controls .right' );
|
dom.controlsRight = document.querySelector( '.controls .right' );
|
||||||
@ -122,7 +123,6 @@ var Reveal = (function(){
|
|||||||
|
|
||||||
if( config.progress ) {
|
if( config.progress ) {
|
||||||
dom.progress.style.display = 'block';
|
dom.progress.style.display = 'block';
|
||||||
dom.progress.max = document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if( config.theme !== 'default' ) {
|
if( config.theme !== 'default' ) {
|
||||||
@ -313,7 +313,7 @@ var Reveal = (function(){
|
|||||||
|
|
||||||
// Update progress if enabled
|
// Update progress if enabled
|
||||||
if( config.progress ) {
|
if( config.progress ) {
|
||||||
dom.progress.value = indexh;
|
dom.progressbar.style.width = ( indexh / ( document.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ).length - 1 ) ) * window.innerWidth + 'px';
|
||||||
}
|
}
|
||||||
|
|
||||||
updateControls();
|
updateControls();
|
||||||
|
Loading…
Reference in New Issue
Block a user