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