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
14 lines (11 loc) • 307 B
JavaScript
;
// console.log("example test wepps!!s");
var linotype = require('../../../index');
window.onload =function(){
window.Linotype = new linotype({
anchors: ['firstPage', 'secondPage', '3rdPage'],
slidesColor: ['#C63D0F', '#1BBC9B', '#7E8F7C'],
css3: true
});
window.Linotype.init();
};