您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
pulsante per tornare allinizio delle pagine
当前为
// ==UserScript== // @name to top 2019 // @author figuccio // @namespace https://gf.qytechs.cn/users/237458 // @description pulsante per tornare allinizio delle pagine // @version 0.1 // @include * // @noframes // @grant GM_addStyle // ==/UserScript== /*Crea un pulsante in un div contenitore. Sarà in stile e posizionato con CSS. */ var z = document.createElement ('div'); z.innerHTML = '<button id="mioButton" type="button">' + '🡹</button>' ; z.setAttribute ('id', 'myContainer'); document.body.appendChild (z); //--- Attiva il pulsante appena aggiunto. document.getElementById ("mioButton").addEventListener ( "click",function(){ window.scrollTo(0,0); }, false); //--- Dai uno stile ai nostri nuovi elementi aggiunti usando i CSS.GM_addStyle (` `); GM_addStyle (multilineStr (function() {/* #mioButton { position:fixed; bottom:2px; right:170px; text-align:left; font-size:11pt; font-weight:bold; cursor:pointer; color:red!important; background-color:yellow; border:2px solid black; border-radius:12px; padding:6px 15px; z-index:50000; text-decoration:none; } */})); //questo ha sistemato il problema (` `);le personalizazioni dei colori del pulsante #myButton anche se apparentemente disattivati funzionano regolarmente function multilineStr (dummyFunc) { var str = dummyFunc.toString(); str = str.replace (/^[^\/]+\/\*!?/, '') //Funzione strip () { /*! .replace (/\s*\*\/\s*\}\s*$/, '') // Strip */ } .replace (/\/\/.+$/gm, '') // I commenti a doppia barra rovinano i CSS. ; return str; } //pulsante ha scomparsa (function gotop(){ if (document.body.scrollTop > 500 || document.documentElement.scrollTop > 500) { z.style.display = 'block';} else {z.style.display = 'none';} setTimeout(gotop,1); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址