Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. // ==UserScript==
  2. // @name BOT BY ADI WILK PREMIUM
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.488
  5. // @description try to take over the world!
  6. // @author You
  7. // @match http://telawel.margonem.pl/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. $(`<style>@keyframes spinner {
  12. 100% {
  13. transform: rotate(1900deg);
  14. }
  15. }
  16.  
  17. .loading-container {
  18. margin: 0 auto;
  19. text-align: center;
  20. position: relative;
  21. top: 50vh;
  22. transform: translateY(-50%);
  23. }
  24.  
  25. .spinner {
  26. display: inline-block;
  27. width: 300px;
  28. height: 300px;
  29. background: url('https://i.imgur.com/HskXq6o.png') center center;
  30. background-size: contain;
  31. transition-origin: 50% 50%;
  32. animation: spinner 3s infinite alternate ease-in-out;
  33. }
  34. .spinner-center {
  35. display: inline-block;
  36. position: absolute;
  37. margin-left: -300px;
  38. width: 300px;
  39. height: 300px;
  40. background: url('') center center;
  41. background-size: contain;
  42. content: '';
  43. }
  44.  
  45. .loading-text {
  46. position: relative;
  47. z-index: 1;
  48. font-size: 1.5rem;
  49. font-family: "Comic Sans MS", cursive, sans-serif;
  50. margin-left: 0.5em;
  51. }
  52.  
  53. #_t1{
  54.  
  55. margin-top: 300px !important;
  56. }
  57. #loading{
  58. background: black !important;
  59. }
  60. </style>`).appendTo("head");
  61.  
  62.  
  63. $("#loading").prepend(`<div class="loading-container">
  64. <div class="spinner"></div>
  65. <div class="spinner-center"></div>
  66. </div>`);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement