在css中,可以利用user-select屬性來實現禁止複製文章內容效果,只需為文字元素添加「user-select:none;」樣式即可。 user-select屬性用於設定或檢索是否允許使用者選取文本,當該屬性的值設為「none」時可讓文字元素無法被滑鼠選取,進而實現禁止複製文字的效果。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
一般網頁上可複製的文字都會出現下面的I
狀遊標
如果不想讓複製文本,透過設定CSS的 user-select就可以達到目的。
user-select屬性設定或檢索是否允許使用者選取文字。 user-select的預設值是 text,可以選擇文字。
在 web 瀏覽器中,如果您在文字上雙擊,文字會被選取或高亮顯示。此屬性用於阻止這種行為。
語法:
user-select: auto|none|text|all;
值 | 說明 |
---|---|
auto | 預設.如果瀏覽器允許,則可以選擇文字。 |
none | 防止文字選取。 |
text | 文字可被使用者選取。 |
all | 點擊選取文本,而不是雙擊。 |
只需要為文字元素新增「user-select:none;
」樣式,讓文字元素無法被滑鼠選取,即可實現禁止複製文字效果。
因為user-select屬性是css3規範中新增的功能,有相容性問題,因此對於不同瀏覽器要加前綴。
禁止複製文字的寫法:
-moz-user-select:none; /* Firefox私有属性 */ -webkit-user-select:none; /* WebKit内核私有属性 */ -ms-user-select:none; /* IE私有属性(IE10及以后) */ -khtml-user-select:none; /* KHTML内核私有属性 */ -o-user-select:none; /* Opera私有属性 */ user-select:none; /* CSS3属性 */
效果(現在是這種箭頭遊標):
範例:禁止文字被選中,實作禁止複製文字功能
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title></title> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <style> .test{ padding:10px; -webkit-user-select:none; -moz-user-select:none; -o-user-select:none; user-select:none; background:#eee;} </style> </head> <body> <div onselectstart="return false;" unselectable="on">选择我试试,你会发现怎么也选择不到我,哈哈哈哈</div> </body> </html>
#(學習影片分享:css影片教學)
以上是css怎麼禁止文章內容複製的詳細內容。更多資訊請關注PHP中文網其他相關文章!