22 lines
552 B
JavaScript
22 lines
552 B
JavaScript
'use strict';
|
|
|
|
// console.log("example test wepps!!s");
|
|
|
|
var linotype = require('../../../index');
|
|
|
|
window.onload =function(){
|
|
window.Linotype = new linotype({
|
|
slidesColor: ['#1bbc9b', '#4BBFC3', '#7BAABE', 'whitesmoke', '#ccddff'],
|
|
anchors: ['firstPage', 'secondPage', '3rdPage', '4thpage', 'lastPage'],
|
|
slidesNavigation: true,
|
|
idSelector: 'fullpage',
|
|
navigation: true,
|
|
css3: true,
|
|
menu: '#menu',
|
|
scrollOverflow: true,
|
|
navigationPosition: 'right',
|
|
navigationTooltips: ['First', 'Second', 'Third']
|
|
});
|
|
|
|
window.Linotype.init();
|
|
}; |