您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Light blue trail follows mouse, page in Comic Sans
// ==UserScript== // @name Light Blue Trail with Comic Sans // @namespace http://tampermonkey.net/ // @version 0.1 // @description Light blue trail follows mouse, page in Comic Sans // @author You // @match *://*/* // @grant none // @license mit // ==/UserScript== (function() { 'use strict'; // Change font to Comic Sans document.body.style.fontFamily = 'Comic Sans MS, Comic Sans, cursive'; function createTrail(e) { const dot = document.createElement('div'); dot.style.position = 'fixed'; dot.style.left = `${e.clientX}px`; dot.style.top = `${e.clientY}px`; dot.style.width = '10px'; dot.style.height = '10px'; dot.style.backgroundColor = 'lightblue'; dot.style.borderRadius = '50%'; dot.style.opacity = '1'; dot.style.transition = 'opacity 1s, transform 1s'; document.body.appendChild(dot); setTimeout(() => { dot.style.opacity = '0'; dot.style.transform = `translateY(-10px)`; setTimeout(() => { dot.remove(); }, 1000); }, 0); } document.addEventListener('mousemove', createTrail); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址