com web/pres2: First part of moving to Reveal 3.0 There is still some css massaging to do: reveal_template.php
[email protected] (Rasmus Lerdorf)
| Newsgroups | php.pres |
|---|---|
| Message-ID | <[email protected]> |
Commit: de62fda9fa011f42772a78df8e14abefb8828de8 Author: Rasmus Lerdorf <[email protected]> Thu, 22 Jan 2015 18:30:21 -0800 Parents: 5f4b73567029e6932fd49c4c431c5e010577035f Branches: master Link: http://git.php.net/?p=web/pres2.git;a=commitdiff;h=de62fda9fa011f42772a78df8e14abefb8828de8 Log: First part of moving to Reveal 3.0 There is still some css massaging to do Changed paths: M reveal_template.php Diff: diff --git a/reveal_template.php b/reveal_template.php index 8e06b92..eac62d9 100644 --- a/reveal_template.php +++ b/reveal_template.php @@ -12,27 +12,25 @@ <meta name="apple-mobile-web-app-capable" content="yes" /> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> - <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.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> <link rel="stylesheet" href="/reveal.js/css/reveal.css"> - <link rel="stylesheet" href="/samdark.css" id="theme"> + <link rel="stylesheet" href="/reveal.js/css/theme/white.css" id="theme"> <!-- For syntax highlighting --> - <link rel="stylesheet" href="/styles/github.css"> + <link rel="stylesheet" href="/reveal.js/lib/css/zenburn.css"> - <!-- If the query includes 'print-pdf', include the PDF print sheet --> + <!-- Printing and PDF exports --> <script> - if( window.location.search.match( /print-pdf/gi ) ) { - var link = document.createElement( 'link' ); - link.rel = 'stylesheet'; - link.type = 'text/css'; - link.href = '/reveal.js/css/print/pdf.css'; - document.getElementsByTagName( 'head' )[0].appendChild( link ); - } + var link = document.createElement( 'link' ); + link.rel = 'stylesheet'; + link.type = 'text/css'; + link.href = window.location.search.match( /print-pdf/gi ) ? '/reveal.js/css/print/pdf.css' : '/reveal.js/css/print/paper.css'; + document.getElementsByTagName( 'head' )[0].appendChild( link ); </script> <!--[if lt IE 9]> - <script src="lib/js/html5shiv.js"></script> + <script src="/reveal.js/lib/js/html5shiv.js"></script> <![endif]--> </head> @@ -62,29 +60,23 @@ <script> - // Full list of configuration options available here: - // https://github.com/hakimel/reveal.js#configuration Reveal.initialize({ controls: true, progress: true, history: true, center: true, - backgroundTransition: 'none', - theme: Reveal.getQueryHash().theme, // available themes are in /css/theme - transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/fade/none + transition: 'slide', // none/fade/slide/convex/concave/zoom transitionSpeed: 'fast', - // Parallax scrolling - // parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg', - // parallaxBackgroundSize: '2100px 900px', - - // Optional libraries used to extend on reveal.js + // Optional reveal.js plugins dependencies: [ { src: '/reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } }, - { src: '/highlight.pack.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, - { src: '/reveal.js/plugin/zoom-js/zoom.js', async: true, callback: function() { return !!document.body.classList; } }, - { src: '/reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } + { src: '/reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + { src: '/reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, + { src: '/reveal.js/plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } }, + { src: '/reveal.js/plugin/zoom-js/zoom.js', async: true }, + { src: '/reveal.js/plugin/notes/notes.js', async: true } ] });