Slimscroll 不适用于 IE 11 中的鼠标滚轮
Slimscroll doesn't work with mouse wheel in IE 11
我正在使用两个 jQuery 插件:
-完整页面
-slimscroll
为了使 scrollOverflow 选项起作用,以便我可以在内容较大的部分内滚动,据我所知,这发生在 Internet Explorer 11 中。
$('#fullpage').fullpage({
anchors:['home', 'what-we-do', 'our-work', 'contact-us'],
menu: '#menu',
css3: true,
scrollingSpeed: 1000,
scrollBar: true,
scrollOverflow: true, ...
在 Internet Explorer 中工作正常,除非在较小的屏幕上激活 slimscroll。
每当我尝试使用鼠标滚轮在激活了 slimscroll 的部分中向下滚动时,它都不起作用。相反,我可以通过向上滚动返回到上一节。
JSFiddle here
我是不是漏掉了什么?
请阅读this topic in fullPage.js forum。
scrollOverflow:true was never tested with scrollBar:true as it doesn't make much sense to have two scroll bars.
...
Therefore I don't think this problem will get solved.
尝试避免使用双滚动条。从他 UI 的角度来看,这是一件可怕的事情。
我正在使用两个 jQuery 插件: -完整页面 -slimscroll
为了使 scrollOverflow 选项起作用,以便我可以在内容较大的部分内滚动,据我所知,这发生在 Internet Explorer 11 中。
$('#fullpage').fullpage({
anchors:['home', 'what-we-do', 'our-work', 'contact-us'],
menu: '#menu',
css3: true,
scrollingSpeed: 1000,
scrollBar: true,
scrollOverflow: true, ...
在 Internet Explorer 中工作正常,除非在较小的屏幕上激活 slimscroll。
每当我尝试使用鼠标滚轮在激活了 slimscroll 的部分中向下滚动时,它都不起作用。相反,我可以通过向上滚动返回到上一节。
JSFiddle here
我是不是漏掉了什么?
请阅读this topic in fullPage.js forum。
scrollOverflow:true was never tested with scrollBar:true as it doesn't make much sense to have two scroll bars.
...
Therefore I don't think this problem will get solved.
尝试避免使用双滚动条。从他 UI 的角度来看,这是一件可怕的事情。