自动模糊图片

打开网站帖子时图片自动模糊,点击后显示正常

  1. // ==UserScript==
  2. // @name 自动模糊图片
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 打开网站帖子时图片自动模糊,点击后显示正常
  6. // @author 你的名字
  7. // @match *://yaohuo.me/*
  8. // @match *://*.yaohuo.me/*
  9. // @icon https://yaohuo.me/css/favicon.ico
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15.  
  16. // 检查页面中的图片
  17. function blurImages() {
  18. const images = document.querySelectorAll('img'); // 获取所有图片
  19. images.forEach(img => {
  20. img.style.filter = 'blur(10px)'; // 设置模糊效果
  21. img.style.transition = 'filter 0.3s ease'; // 添加过渡效果
  22.  
  23. // 添加点击事件移除模糊
  24. img.addEventListener('click', function () {
  25. img.style.filter = 'none'; // 取消模糊
  26. });
  27. });
  28. }
  29.  
  30. // 初始执行一次
  31. blurImages();
  32.  
  33. // 监听动态加载内容
  34. const observer = new MutationObserver(mutations => {
  35. mutations.forEach(mutation => {
  36. if (mutation.addedNodes.length > 0) {
  37. blurImages();
  38. }
  39. });
  40. });
  41.  
  42. // 监听整个页面的变化
  43. observer.observe(document.body, { childList: true, subtree: true });
  44. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址