MLG Web Design

Turn websites you visit in a hypnotic mess only true 360° quickscopers can use.

  1. // ==UserScript==
  2. // @name MLG Web Design
  3. // @match *://*/*
  4. // @description Turn websites you visit in a hypnotic mess only true 360° quickscopers can use.
  5. // @namespace ad48
  6. // @version 0.69b
  7. // @grant none
  8. // @include *://*/*
  9. // @run-at document-start
  10. // ==/UserScript==
  11. setInterval(function(){
  12. var h3s = document.body.getElementsByTagName("*");
  13. var h2s = document.body.getElementsByTagName("h1");
  14. var h1s = document.body.getElementsByTagName("h1");
  15. var ps = document.body.getElementsByTagName("p");
  16. for(i = 0; i < h3s.length; i++) {
  17. if(!h3s[i].getAttribute("canRot") || h3s[i].getAttribute("canRot")=="null") {
  18. if(Math.random()>0.911) {
  19. h3s[i].setAttribute("canRot","true");
  20. }
  21. else {
  22. h3s[i].setAttribute("canRot","false");
  23. }
  24. }
  25. if(!h3s[i].getAttribute("canPos") || h3s[i].getAttribute("canPos")=="null") {
  26. if(Math.random()>0.81) {
  27. h3s[i].setAttribute("canPos","true");
  28. }
  29. else {
  30. h3s[i].setAttribute("canPos","false");
  31. }
  32. }
  33. h3s[i].style.color="hsl("+(Math.random()*360).toString()+",100%,50%)";
  34. if((h3s[i].style.position=="relative" || h3s[i].style.position=="" || h3s[i].style.position=="null") && h3s[i].outerText!=""&& h3s[i].childElementCount==0) {
  35. if(h3s[i].getAttribute("canRot")=="true") {
  36. if(!h3s[i].getAttribute("rotX") || h3s[i].getAttribute("rotX")=="null") {
  37. h3s[i].setAttribute("rotX",Math.random()*360);
  38. }
  39. else {
  40. while(parseInt(h3s[i].getAttribute("rotX"))>360) {
  41. h3s[i].setAttribute("rotX",(parseInt(h3s[i].getAttribute("rotX"))-360).toString());
  42. }
  43. h3s[i].setAttribute("rotX",(parseInt(h3s[i].getAttribute("rotX"))+4.2).toString());
  44. }
  45. h3s[i].style.transform="rotateZ("+h3s[i].getAttribute("rotX")+"deg)";
  46. }
  47. if(h3s[i].getAttribute("canPos")=="true") {
  48. h3s[i].style.left=(Math.random()*12.24).toString()+"px";
  49. h3s[i].style.top=(Math.random()*12.24).toString()+"px";
  50. }
  51. }
  52. }
  53. }, 69);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址