webAPP/移动端一些样式设置

1、在webAPP里面禁止文字选中复制功能,只要设置一下样式即可

*{
  -webkit-user-select:none;
  -moz-user-select:none;
  -o-user-select:none;
  user-select:none;
}

input,
textarea,
select{
  -webkit-user-select: auto;
  -moz-user-select:auto;
  -o-user-select:auto;
  user-select:auto;
}

2、事件监听的元素被点击的时候会被高亮显示 ,加上这一段即可

-webkit-tap-highlight-color: transparent;

猜你喜欢

转载自blog.csdn.net/qq_39364032/article/details/85272243