Add one presentation that provides a very simple demo, using impress.js to create a very traditional "slide show". Possibly it's an easier way to learn impress.js (it's commented, just like the official demo.) It uses the relative positioning plugin and uses "speaker notes", which aren't shown in the presentation, but are picked up and shown in the speaker console (press 'P'). Also uses autoplay, forms... and includes short demo of all the extra addons from extras/. (Highlight.js, Markdown.js, Mathjax.js, Mermaid.js)
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
var buildify = require('buildify');
|
|
|
|
|
|
buildify()
|
|
.load('src/impress.js')
|
|
// Libraries from src/lib
|
|
.concat(['src/lib/gc.js'])
|
|
.concat(['src/lib/util.js'])
|
|
// Plugins from src/plugins
|
|
.concat(['src/plugins/autoplay/autoplay.js',
|
|
'src/plugins/blackout/blackout.js',
|
|
'src/plugins/extras/extras.js',
|
|
'src/plugins/form/form.js',
|
|
'src/plugins/goto/goto.js',
|
|
'src/plugins/help/help.js',
|
|
'src/plugins/impressConsole/impressConsole.js',
|
|
'src/plugins/mobile/mobile.js',
|
|
'src/plugins/mouse-timeout/mouse-timeout.js',
|
|
'src/plugins/navigation/navigation.js',
|
|
'src/plugins/navigation-ui/navigation-ui.js',
|
|
'src/plugins/progress/progress.js',
|
|
'src/plugins/rel/rel.js',
|
|
'src/plugins/resize/resize.js',
|
|
'src/plugins/skip/skip.js',
|
|
'src/plugins/stop/stop.js',
|
|
'src/plugins/substep/substep.js',
|
|
'src/plugins/touch/touch.js',
|
|
'src/plugins/toolbar/toolbar.js'])
|
|
.save('js/impress.js');
|
|
/*
|
|
* Disabled until uglify supports ES6: https://github.com/mishoo/UglifyJS2/issues/448
|
|
.uglify()
|
|
.save('js/impress.min.js');
|
|
*/
|
|
|
|
|
|
/* Auto generate an index.html that lists all the directories under examples/
|
|
* This is useful for gh-pages, so you can link to http://impress.github.io/impress.js/examples
|
|
*/
|
|
var ls = require('ls');
|
|
var fs = require('fs');
|
|
var path = require('path');
|
|
|
|
var html_list = '<ul><br />\n'
|
|
ls( 'examples/*', { type: 'dir' }).forEach(function(dir) {
|
|
html_list += ' <li><a href="' + dir['file'] + '/">' + dir['name'] + '</a></li>\n';
|
|
});
|
|
html_list += '</ul>\n'
|
|
|
|
var html = '<html>\n<head>\n<title>Example presentations</title>\n</head>\n<body>'
|
|
html += '<h1>Example presentations</h1>\n' + html_list
|
|
html += '</body>\n</html>'
|
|
|
|
var filename = path.resolve(__dirname, 'examples', 'index.html');
|
|
fs.writeFileSync(filename, html);
|
|
console.log(filename);
|