长按出现复制或者取消

2019-06-05  本文已影响0人  Do_Du

希望长按出现复制在App.vue 中,加样式 -webkit-user-select: text;

#app {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  width: 100%;
  height:100%;
  background: #F4F4F4;
  -webkit-user-select: text;
}

希望取消长按出现复制

* {
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
}
上一篇 下一篇

猜你喜欢

热点阅读