首页 > 其他分享 >[macos]关闭macos的 inertia 效果 和橡皮筋效果

[macos]关闭macos的 inertia 效果 和橡皮筋效果

时间:2023-11-01 10:06:47浏览次数:25  
标签:实用 macos 滚动 效果 滚动条 UI inertia

macOS 与windows相比,显然在UI设计和很多地方都下了大功夫,

但往往还是用力过猛 有些过度设计的UI特效并不实用

 

比如

1.滚动条的bounce,比如在OS X下的Chrome中,下拉滚动条到底的话向上回弹, 这个动画刚看上去好像符合直觉,觉得是一个很好的设计,但实际并不实用,当我拉到底的时候我就想最快速度看到底部的文字内容,我不想眼花缭乱的等那个动画结束后才看到内容。

https://apple.stackexchange.com/questions/18187/can-you-disable-rubber-band-scrolling-in-os-x-lion

defaults write -g NSScrollViewRubberbanding -bool false

 

2.滚动的 inertia 效果,惯性打开后滚动速度会越来越快,所以实际滚动手指移动举例和屏幕滚动距离不是1:1,这不精准,看起来好像符合直觉,但对于大量浏览页面的人不是很适合(不实用)。

 

[macos]关闭macos的 inertia 效果 和橡皮筋效果_电脑技巧

 



标签:实用,macos,滚动,效果,滚动条,UI,inertia
From: https://blog.51cto.com/u_15351164/8119145

相关文章

  • [macos]keyboard mastero设置
    拖动的时候通过点击command来进行复制 ......
  • [macos]hammerspoon设置
    在init的lua脚本中,下面的代码是为了在进入Terminal、ShortCat和Spolight的时候,默认切换到英文输入法 localfunctionChinese()hs.console.printStyledtext("chinese")hs.keycodes.currentSourceID("com.apple.inputmethod.SCIM.ITABC")endlocalfunctionEnglish()hs.console.pr......
  • [macos]增加三指上滑呼出mission control的速度
    FirstyoucanchangethespeedofswitchingintoMissionControl(stillcalledExposeintheprefs).Todothatjustenterthiscommand:defaultswritecom.apple.dockexpose-animation-duration-int0;killallDockAndtogobacktodefaultsrunthiscommand......
  • [macos]karabiner-elements设置
    通过一些映射来方便我的mac操作      20200423:  https://github.com/eret9616/my-karabiner-config ......
  • [macos]magicmouse 配合 bettertouchtool实现触摸功能
       1.将所有的tap设置为左键点击2.2fingertap设置为右键点击3.3fingertap设置为lookupword4.2fingerswipeup和swipedown都设置为missioncontrol      其他优化: 将option+command+C设置为双击选中并复制       trackpad优化:  ......
  • [macos]macOS下的动画关闭
    Disableanimationswhenopeningandclosingwindows.(关闭打开一个窗口的动画,如:打开textEdit)defaultswriteNSGlobalDomainNSAutomaticWindowAnimationsEnabled-boolfalse  DisableanimationwhenopeningtheInfowindowinFinder(cmd⌘+i).(关闭command+i的动画暂......
  • [macos]移除dock中的Trash和Finder
    准备:在catalina下修改系统文件需要先输入以下命令(否则会提示只读) 步骤:https://github.com/jesscXC/hide-finder-trash-dock-icons......
  • [macos]mac os 的 show All操作
    使用command+H隐藏窗口后,有没有什么办法能把所有隐藏的窗口都展示出来呢  SystemPreferences>Keyboard>KeyboardShortcuts>select"ApplicationShortcuts">highlight"AllApplications">click"+">type"ShowAll"inthe"......
  • [macos]提高将mac os的键盘响应性
     除了在键盘中设置重复率速度,    还可以通过下面的操作,mac的英文输入法如果长按一个键的时候,是会去输入它的重音的,TohaverepeatingkeysenterthiscommandintheTerminaldefaultswriteNSGlobalDomainApplePressAndHoldEnabled-boolfalsethiswilldisablethediac......
  • [macos]os x 技巧: 关闭打字时候光标闪烁 no blink
     关闭光标闪烁:defaultswrite-gNSTextInsertionPointBlinkPeriodOff-float0defaultswrite-gNSTextInsertionPointBlinkPeriodOn-float999999999999http://www.jurta.org/en/prog/noblink......