よく私が使うcssとeventがこちら
#テキスト選択無効
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
#ハイライト透明
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
-ms-tap-highlight-color: rgba(0, 0, 0, 0);
tap-highlight-color: rgba(0, 0, 0, 0);
#タッチスクロール禁止
-webkit-touch-action: none;
-ms-touch-action: none;
touch-action: none;
#テキスト選択禁止
element.addEventListener("selectstart", function(e) { e.preventDefault(); }, false);
完璧というわけではないが、少なくともマシな動作にはなるのかと