Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

change page up / page down settings

  • 8 个回答
  • 3 人有此问题
  • 3 次查看
  • 最后回复者为 ithinktfiam

more options

I'm in W10. When I use the page up & page down keys, windows seem to scroll more than a page. I searched and found a site's suggestion to change the default y scrolling. I looked and it was already 100. that might just have to do with the scroll wheel.

What config needs to change to work with the keys on a standard keyboard, to change their page scrolling distance?

I'm in W10. When I use the page up & page down keys, windows seem to scroll more than a page. I searched and found a site's suggestion to change the default y scrolling. I looked and it was already 100. that might just have to do with the scroll wheel. What config needs to change to work with the keys on a standard keyboard, to change their page scrolling distance?

所有回复 (8)

more options

Does the same happen when you press the Space bar?


To be sure, you can check this setting:

You may have switched on caret browsing.

You can toggle caret browsing on/off by pressing F7 (Mac: fn + F7).

  • Options/Preferences -> Advanced -> General -> Accessibility: [ ] "Always use the cursor keys to navigate within pages"

Note that this is an accessibility feature of Firefox.

more options

Nope, caret browsing still false.

more options

Found this, but it's an older solution: http://forums.mozillazine.org/viewtopic.php?f=38&t=1832245

more options

Does that work for you?

If you want a specific line count then use code like this:

MAX = 20;
for(i = MAX;i > 0 ; i--){ goDoCommand('cmd_scrollLineDown'); }
MAX = 20;
for(i = MAX; i > 0; --i){ goDoCommand('cmd_scrollLineUp'); }

You can also use the PrefBar extension to create a button with this code and assign a shortcut.

more options

Fizix: Do you know if that can be added to about:config, or is it too old for safety?

Cor-el: I'm not in the least interested in code. Configuration settings are one thing, but ease of use matters.

more options

There are no prefs to set the scroll amount for a full page, only for normal scrolling with the mouse wheel or keyboard.

more options

It looks like you'd need to use the most recent version of the Keyconfig extension Dorando Keyconfig, and paste the line of code provided into it, to adjust the scroll distance. Adjusting the -50 to -130 seemed to solve the issue for the original poster there.

window.content.document.getElementsByTagName('html')[0].scrollTop+=window.content.document.getElementsByTagName('html')[0].clientHeight-50;

由ABitMore1024于修改

more options

I just noticed something that changes the context of the problem. It was noticed in using Page Down on Indeed pages. What I just noticed is that on LinkedIn, the pages seem to Page Down almost exactly a page. The two different sites are acting differently.

Does that sound link Indeed is just interpreting the instruction from Firefox incorrectly, and sending a bad scroll back to the FF client?