TransALot

make the world transition!

  1. // ==UserScript==
  2. // @name TransALot
  3. // @namespace http://tampermonkey.net/
  4. // @version v1.1.2
  5. // @description make the world transition!
  6. // @author PCwqyy
  7. // @match http://*/*
  8. // @match https://*/*
  9. // @icon https://cdn.luogu.com.cn/upload/usericon/567385.png
  10. // @grant none
  11. // @license MIT
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. var Body114=document.getElementsByTagName("body");
  16. var Id=setInterval(()=>{
  17. if(Body114.length!=0)
  18. {
  19. var Style114=document.createElement('style');
  20. Style114.textContent="*{transition: 2s;}a{transition: 0.5s;}span{transition: 0s;}";
  21. Body114[0].appendChild(Style114);
  22. clearInterval(Id);
  23. }
  24. },10);
  25. })();