简体   繁体   English

仅在移动设备上禁用文本选择和图像下载的最佳方法

[英]Best way to disable text selection and image download on mobile only

I'm planning to use this to achieve that我打算用这个来实现那个

-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
-webkit-tap-highlight-color:rgba(0,0,0,0);

Just wondering, is there a better, or more neat way to achieve that?只是想知道,是否有更好或更巧妙的方法来实现这一目标? I only want to disable text selection (copy paste) and image download on mobile.我只想在移动设备上禁用文本选择(复制粘贴)和图像下载。 I know user can still do that with otherways and it's not very user friendly.我知道用户仍然可以用其他方式做到这一点,而且它不是很用户友好。 I'm already aware of the negatives assosciated with it.我已经意识到与之相关的负面影响。

Thanks!谢谢!

A media query with the following would prevent the user selecting any of the text.具有以下内容的媒体查询将阻止用户选择任何文本。 Touch callouts are just the blue highlight.触摸标注只是蓝色突出显示。

body, html {
    user-select: none;
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM