0
I’m using Plguin Iscroll to scroll through to show a list on an IOS device.
I’ve been looking at the site where I downloaded the plugin (here), but found no information about decreasing/increasing scroll sensitivity.
Is there any instruction that does?
UPDATE
Inicialização do IScroll
var wrapper = document.getElementById('treelist');
myScroll = new IScroll(wrapper, {
scrollX : false,
scrollY : true,
scrollbars : false,
interactiveScrollbars : true,
mouseWheel : true,
hScrollbar : false,
vScrollbar : true,
useTransition : false,
snap : 'li',
tap: true,
click: true,
mouseWheelSpeed: 1,
indicators : {
el : '#scroller',
fade : false,
ignoreBoundaries : false,
interactive : false,
listenX : false,
listenY : true,
resize : false,
shrink : false,
speedRatioX : 0,
speedRatioY : 0,
checkDOMChanges: true,
},
});
I’ll try, but I don’t think so, because I’m not using the mouse wheel
– msm.oliveira
Still scroll, independent of mouse/mouse/mouse/finger :D
– Maicon Carraro
I don’t think it worked, at least I’ve experienced
mouseWheelSpeed: 1
andmouseWheelSpeed: 100
to see the difference, and I didn’t notice anything. It may have few elements to go through to notice the difference?– msm.oliveira
How are you declaring these commands?
– Maicon Carraro
I upadte the question, I added the javascript code that initializes iscroll
– msm.oliveira