title
目前為
// ==UserScript==
// @name Moving touch buttons in tetr.js
// @namespace http://tampermonkey.net/
// @version 0.1
// @author Oki
// @description title
// @match https://*.jstris.jezevec10.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function(){
touchLayout.onclick = function() {
setTimeout(x=>{touchHold.style.top = "0px";touchHold.style.left = "0px"},10)
}
});
})();