slimscroll
Version:
slimscroll is a small commonjs module with no library dependencies (sans jquery) that transforms any div into a scrollable area with a nice scrollbar - similar to the one Facebook and Google started using in their products recently. slimScroll doesn't occ
16 lines (12 loc) • 365 B
JavaScript
;
// console.log("example test wepps!!s");
var linotype = require('../../../index');
window.onload =function(){
window.Linotype = new linotype({
anchors: ['firstPage', 'secondPage', '3rdPage', '4thPage'],
'slidesColor': ['#4A6FB1', '#939FAA', '#323539'],
'scrollOverflow': true,
'fixedElements':'#demosMenu'
});
window.Linotype.init();
};