ytwy

1.禁止长按屏幕弹出对话框并选中文字

/*禁止长按选择文字事件*/

* {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

2.页面滑动加速(惯性)

/*滚动加速*/
body,
html {
	-webkit-overflow-scrolling: touch; //允许独立的滚动区域和触摸回弹
}

 

分类:

技术点:

相关文章:

  • 2022-12-23
  • 2021-10-19
  • 2022-01-23
  • 2021-09-18
  • 2022-12-23
  • 2021-09-18
  • 2021-10-26
  • 2021-10-07
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-10-06
  • 2021-06-02
  • 2021-06-17
  • 2022-02-11
  • 2022-12-23
相关资源
相似解决方案