婆罗门
精华
|
战斗力 鹅
|
回帖 0
注册时间 2011-4-2
|
修改mousewheel.min_line_scroll_amount 这个参数看一下,如果不行就需要修改其它相关参数了。
或者使用扩展来修改,修改完后记住参数保存好后就能把扩展删除了。
或者你使用下面这套参数,选择你显示设备对应的刷新率就行
- /****************************************************************************************
- * Smoothfox *
- * "Faber est suae quisque fortunae" *
- * priority: better scrolling *
- * version: 126.1 *
- * url: https://github.com/yokoffing/Betterfox *
- ***************************************************************************************/
- // Use only one option at a time!
- // Reset prefs if you decide to use different option.
- /****************************************************************************************
- * OPTION: SHARPEN SCROLLING *
- ****************************************************************************************/
- // credit: https://github.com/black7375/Firefox-UI-Fix
- <b><font color="#8b0000">// only sharpen scrolling</font></b>
- user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
- user_pref("general.smoothScroll", true); // DEFAULT
- user_pref("mousewheel.min_line_scroll_amount", 10); // 10-40; adjust this number to your liking; default=5
- user_pref("general.smoothScroll.mouseWheel.durationMinMS", 80); // default=50
- user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); // default=.25
- user_pref("general.smoothScroll.stopDecelerationWeighting", "0.6"); // default=.4
- // Firefox Nightly only:
- // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1846935
- user_pref("general.smoothScroll.msdPhysics.enabled", false); // [FF122+ Nightly]
- /****************************************************************************************
- * OPTION: INSTANT SCROLLING (SIMPLE ADJUSTMENT) *
- ****************************************************************************************/
- <b><font color="#ff0000">// recommended for 60hz+ displays</font></b>
- user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
- user_pref("general.smoothScroll", true); // DEFAULT
- user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking
- // Firefox Nightly only:
- // [1] https://bugzilla.mozilla.org/show_bug.cgi?id=1846935
- user_pref("general.smoothScroll.msdPhysics.enabled", false); // [FF122+ Nightly]
- /****************************************************************************************
- * OPTION: SMOOTH SCROLLING *
- ****************************************************************************************/
- <b><font color="#ff0000">// recommended for 90hz+ displays</font></b>
- user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
- user_pref("general.smoothScroll", true); // DEFAULT
- user_pref("general.smoothScroll.msdPhysics.enabled", true);
- user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
- /****************************************************************************************
- * OPTION: NATURAL SMOOTH SCROLLING V3 [MODIFIED] *
- ****************************************************************************************/
- // credit: https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js
- <font color="#ff0000"><b>// recommended for 120hz+ displays</b></font>
- // largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling
- user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX
- user_pref("general.smoothScroll", true); // DEFAULT
- user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12);
- user_pref("general.smoothScroll.msdPhysics.enabled", true);
- user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600);
- user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650);
- user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25);
- user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", "2");
- user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250);
- user_pref("general.smoothScroll.currentVelocityWeighting", "1");
- user_pref("general.smoothScroll.stopDecelerationWeighting", "1");
- user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking
复制代码
|
|