您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A mouse follower 18 cqi square 50% border radius
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/491232/1351456/follower2078.js
- document.addEventListener('DOMContentLoaded', function () {
- const follower = document.createElement('form');
- follower.classList.add('follower');
- document.body.appendChild(follower);
- follower.style.visibility = 'hidden';
- follower.style.position = 'fixed';
- follower.style.pointerEvents = 'none';
- document.body.addEventListener('mousemove', (e) => {
- follower.style.visibility = 'visible';
- follower.style.left = `${e.pageX}px`;
- follower.style.top = `${e.pageY}px`;
- follower.style.transform = 'translate(-50%, -50%)';
- });
- document.body.addEventListener('mouseleave', (e) => {
- follower.style.visibility = 'hidden';
- });
- document.body.addEventListener('click', function (e) {
- if (follower.style.visibility === 'hidden') {
- follower.style.visibility = 'visible';
- follower.style.left = `${e.clientX}px`;
- follower.style.top = `${e.clientY}px`;
- follower.style.transform = 'translate(-50%, -50%)';
- } else {
- follower.style.visibility = 'hidden';
- }
- document.body.addEventListener('mousemove', (e) => {
- follower.style.visibility = 'hidden';
- });
- document.body.addEventListener('click', function (e) {
- if (follower.style.visibility === 'visible') {
- follower.style.visibility = 'hidden';
- }
- });
- });
- });