Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为 win8 平台开发这个应用程序,我遇到了 input[type="range"](滑块)的问题,当您想要移动滑块拇指时,您经常滑动孔背景而不是滑块拇指.
他们是一个 input[type="range"]::-ms-thumb 选择器,但它似乎只在 x 轴上工作,因为它周围的区域溢出隐藏了 y 轴。
有没有人有办法增加拇指的大小?
您可以将-ms-touch-action: none;CSS 属性添加到输入元素以在触摸该元素时禁用平移,然后它应该会更好地工作。
-ms-touch-action: none;