Moving touch buttons in tetr.js

title

目前為 2020-01-27 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Moving touch buttons in tetr.js
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @author Oki
  6. // @description title
  7. // @match https://*.jstris.jezevec10.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. window.addEventListener('load', function(){
  15.  
  16.  
  17. touchLayout.onclick = function() {
  18. setTimeout(x=>{touchHold.style.top = "0px";touchHold.style.left = "0px"},10)
  19. }
  20.  
  21. });
  22. })();