Có rất nhiều bài viết hướng dẫn bạn chống copy bài viết, cấm
click chuột phải nhưng đa số liên quan đến js và đều có cách giải mã.
Cách 1: Chống copy toàn trang
Mở themes/default/css/style.css tìm body thêm đoạn này vào
-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;Ví dụ của tôi sẽ là:
body { -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none; color: #333; font-family: Arial,sans-serif; font-size: 14px; line-height: 1.42857; background: #fff url(../images/bg.jpg) no-repeat fixed center center;}
Cách 2: chống copy nội dung bài viết news
Mở
themes/default/css/style.css tìm bodytext
.bodytext { word-break: keep-all; max-width: 100%; overflow-x: hidden; overflow-y: visible; line-height: 1.7em;}
thêm vào ta được
.bodytext { word-break: keep-all; max-width: 100%; overflow-x: hidden; overflow-y: visible; line-height: 1.7em;-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;}
Cách 3: chống copy nội dung sản phẩm
Mở files: themes/default/css/shops.css và tìm
#detail { margin: 5px !important;}thêm vào ta được
#detail { margin: 5px !important;-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;}
Bất cứ bạn muốn chặn ở đâu thì chỉ cần thêm css vào
-webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -o-user-select: none; user-select: none;Còn ngược lại đoạn css sau sẽ cho bạn copy thao tác với nội dung
-webkit-user-select: text; -khtml-user-select: text; -moz-user-select: text; -o-user-select: text; user-select: text;
Chúc các bạn thành công!
0 Comments