您需要登录账号才能看到图片及内容下载,马上注册享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?立即注册
x
效果文章图片文章灯箱提醒其实防不住采集和F12,因为采集不采集CSS,F12会懂一点的也防不住。 代码【子比专属】其实思路都一样,只需要你自己F12定位自己想要模糊的DIV就是
- //未登录文章详情页内图片模糊
- function unlogin_css(){
- echo '<style>
- .article-content img {
- -webkit-filter: blur(10px)!important;
- -moz-filter: blur(10px)!important;
- -ms-filter: blur(10px)!important;
- filter: blur(6px)!important;}
- .swiper-close img {
- -webkit-filter: blur(10px)!important;
- -moz-filter: blur(10px)!important;
- -ms-filter: blur(10px)!important;
- filter: blur(6px)!important;}
- </style>';
- }
- if( !is_user_logged_in()) {add_action( 'wp_head', 'unlogin_css' );};
复制代码- //未登录全站图片模糊
- function all_css(){
- echo '<style>
- img {
- -webkit-filter: blur(10px)!important;
- -moz-filter: blur(10px)!important;
- -ms-filter: blur(10px)!important;
- filter: blur(6px)!important;}
- </style>';
- }
- if( !is_user_logged_in()) {add_action( 'wp_head', 'all_css' );};
复制代码 主题根目录functions.php中 |