Hi all,
Ihave an website with animation that keeps resizing as per screen resolution. for this I have created different symbols. Here I need text scroll bar with custom css with mouse wheel scroll.
Below is the code which I used,
yepnope({nope:[ 'jquery.mCustomScrollbar.css',
'jquery.mousewheel.min.js',
'jquery.mCustomScrollbar.js',
'jquery-ui-1.8.21.custom.min.js',
'jquery-1.8.3.min.js',
],complete: init});
function init (){
sym.$("tContent").mCustomScrollbar({
scrollInertia:500,
scrollEasing:"easeOutCirc",
scrollButtons:{
enable:false
}
});
sym.$("sertxt").mCustomScrollbar({
scrollInertia:500,
scrollEasing:"easeOutCirc",
scrollButtons:{
enable:false
}
});
}
I called this code in every symbols but it is not working.
Pls help.