Advertisement
Tustin

Untitled

Jun 25th, 2017
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.33 KB | None | 0 0
  1.  
  2.  
  3. <!--
  4. Mad cuz tapped by Reyz
  5. -->
  6.  
  7.  
  8. <html><head>
  9. <script type="text/javascript">
  10. var rev = "fwd";
  11. function titlebar(val)
  12. {
  13. var msg = "Reyz";
  14. var res = " ";
  15. var speed = 100;
  16. var pos = val;
  17. msg = "Reyz";
  18. var le = msg.length;
  19. if(rev == "fwd"){
  20. if(pos < le){
  21. pos = pos+1;
  22. scroll = msg.substr(0,pos);
  23. document.title = scroll;
  24. timer = window.setTimeout("titlebar("+pos+")",speed);}
  25. else{
  26. rev = "bwd";
  27. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  28. else{
  29. if(pos > 0){
  30. pos = pos-1;
  31. var ale = le-pos;
  32. scrol = msg.substr(ale,le);
  33. document.title = scrol;
  34. timer = window.setTimeout("titlebar("+pos+")",speed);}
  35. else{
  36. rev = "fwd";
  37. timer = window.setTimeout("titlebar("+pos+")",speed);
  38. }}}
  39. titlebar(0);
  40. </script>
  41. <link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
  42. <link href="https://fonts.googleapis.com/css?family=VT323" rel="stylesheet">
  43. <meta charset="utf-8">
  44. <style>
  45. body, html {
  46. background:url(http://juggernog.xyz/DimwittedHollowAbyssiniancat-size_restricted.gif);
  47. background-size: cover;
  48. background-repeat: no-repeat;
  49. }
  50. #heading {
  51. font-family:'Press Start 2P', cursive;
  52. font-size:42;
  53. color:orangered;
  54. padding:30;
  55. text-align: center;
  56. position:relative;
  57. top:28%;
  58. text-shadow: 0 1px 0 #ccc,
  59. 0 2px 0 #c9c9c9,
  60. 0 3px 0 #bbb,
  61. 0 4px 0 #b9b9b9,
  62. 0 5px 0 #aaa,
  63. 0 6px 1px rgba(0,0,0,.1),
  64. 0 0 5px rgba(0,0,0,.1),
  65. 0 1px 3px rgba(0,0,0,.3),
  66. 0 3px 5px rgba(0,0,0,.2),
  67. 0 5px 10px rgba(0,0,0,.25),
  68. 0 10px 10px rgba(0,0,0,.2),
  69. 0 20px 20px rgba(0,0,0,.15);
  70. }
  71. #menu {
  72. font-family:'VT323', cursive;
  73. font-size:30;
  74. color:#eee;
  75. padding:30;
  76. text-align: center;
  77. position:relative;
  78. top:27%;
  79. left:-50;
  80. text-shadow:1px 1px 2px black;
  81. }
  82. a {
  83. color: #fff;
  84. text-decoration: none;
  85. }
  86. #line {
  87. font-family:'VT323', cursive;
  88. font-size:30;
  89. color:orangered;
  90. text-align: center;
  91. position:relative;
  92. top:27%;
  93. text-shadow:1px 1px 2px black;
  94. }
  95. #cred {
  96. position:absolute;
  97. color:#fff;
  98. opacity:0.6;
  99. left:40;
  100. bottom:40;
  101. font-family:VT323;
  102. font-size:23;
  103. }
  104. </style>
  105.  
  106. </head>
  107. <body onload="musss()">
  108. <div id="heading">Reyz</div>
  109. <div id="menu">...<a target="newTab" href="http://steamcommunity.com/id/Criminality/">STEAM</a> /<br> ...<a target="newTab" href="https://www.youtube.com/channel/UC-yLhpkHTXt5_rQ64-ttmuQ">YOUTUBE</a> /<br> ... /</div>
  110. <div id="line">========================</div>
  111. <script>
  112. function musss() {
  113. document.getElementById('Reyz').play();
  114. document.getElementById('Reyz').volume = 0.4;
  115. }
  116. typer('Reyz...','heading',50);
  117. setTimeout(function() {
  118. typer("...<a target='newTab' href='http://steamcommunity.com/id/Criminality/'>STEAM</a> /\<br> ...<a target='newTab' href='https://www.youtube.com/channel/UCWEGr5-Voo5IiCH-zsiz67w'>YOUTUBE</a> /\<br> ...<a target='newTab' href='http://steamcommunity.com/id/l5/'>Alt Steam</a> /\<br> ...<a target='newTab' href='http://twitter.com/ReyzCS/'>Twitter</a> /",'menu',20);
  119. }, 300);
  120. setTimeout(function() {
  121. typer('============================','line',20);
  122. }, 6200);
  123. function typer(str,ids,spd) {
  124. var arr = str.split(''); //Puts all string characters into an array.
  125. var trg = [];
  126. var lgg = "";
  127. console.log(arr); //Spits out the array of characters for debugging.
  128. for (var i = 0; i < arr.length; i++) { //Basic for loop.
  129. (function(i){
  130. window.setTimeout(function(){ //Set timeout for typing effect.
  131. trg.push(arr[i]); //Add the element of number i to the last position in a new array.
  132. lgg = trg.join(""); //Make the array into a string without commas.
  133. console.log(lgg); //Log all the strings for debugging.
  134. document.getElementById(ids).innerHTML = lgg; //Print onto the page.
  135. }, i * spd); //Increase the timeout value each time.
  136. }(i));
  137. }
  138. /*setTimeout(function() { //Cursor at the end of the line.
  139. trg.push("_");
  140. lgg = trg.join("");
  141. document.getElementById(ids).innerHTML = lgg;
  142. }, arr.length * spd + 10);*/
  143. }
  144. </script>
  145. <script>
  146. document.onkeydown = function(e) {
  147. if (e.ctrlKey) { alert('root@ReyzSec~');
  148. }
  149. return true;
  150. };
  151. </script>
  152.  
  153.  
  154. <script>
  155. function click() {
  156. if (event.button == 2 || event.button == 3) {alert('root@ReyzSec~');
  157. oncontextmenu = 'return false';
  158. }
  159. }
  160. document.onmousedown = click
  161. document.oncontextmenu = new Function("return false;")
  162. </script>
  163. <div id="cred"><a href="http://steamcommunity.com/id/l5/">Alt Steam</a></div>
  164. <audio id="Reyz" type="audio/mp3" src="Slumpgod.mp3" loop=""></audio>
  165.  
  166.  
  167. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement