Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.84 KB | None | 0 0
  1. <title>Mr.B31N</title>
  2. <center><br>
  3. <script type="text/javascript">/*<![CDATA[*/
  4.  
  5. TypingText = function(element, interval, cursor, finishedCallback) {
  6.  
  7. if((typeof document.getElementById ==
  8.  
  9. "undefined") || (typeof element.innerHTML == "undefined")) {
  10.  
  11. this.running = true;
  12.  
  13. return;
  14.  
  15. }
  16.  
  17. this.element = element;
  18.  
  19. this.finishedCallback = (finishedCallback
  20.  
  21. ? finishedCallback : function() { return; });
  22.  
  23. this.interval = (typeof interval == "undefined" ? 100 : interval);
  24.  
  25. this.origText = this.element.innerHTML;
  26.  
  27. this.unparsedOrigText = this.origText;
  28.  
  29. this.cursor = (cursor ? cursor : "");
  30.  
  31. this.currentText = "";
  32.  
  33. this.currentChar = 0;
  34.  
  35. this.element.typingText = this;
  36.  
  37. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  38.  
  39. TypingText.all.push(this);
  40.  
  41. this.running = false;
  42.  
  43. this.inTag = false;
  44.  
  45. this.tagBuffer = "";
  46.  
  47. this.inHTMLEntity = false;
  48.  
  49. this.HTMLEntityBuffer = "";
  50.  
  51. }
  52.  
  53. TypingText.all = new Array();
  54.  
  55. TypingText.currentIndex = 0;
  56.  
  57. TypingText.runAll
  58.  
  59. = function() {
  60.  
  61. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  62.  
  63. }
  64.  
  65. TypingText.prototype.run = function() {
  66.  
  67. if(this.running) return;
  68.  
  69. if(typeof this.origText == "undefined") {
  70.  
  71. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  72.  
  73. return;
  74.  
  75. }
  76.  
  77. if(this.currentText == "") this.element.innerHTML = "";
  78.  
  79. if(this.currentChar < this.origText.length) {
  80.  
  81. if(this.origText.charAt(this.currentChar) == "<" &&
  82.  
  83. !this.inTag) {
  84.  
  85. this.tagBuffer = "<";
  86.  
  87. this.inTag = true;
  88.  
  89. this.currentChar++;
  90.  
  91. this.run();
  92.  
  93. return;
  94.  
  95. } else if(this.origText.charAt(this.currentChar) == ">" &&
  96.  
  97. this.inTag) {
  98.  
  99. this.tagBuffer += ">";
  100.  
  101. this.inTag = false;
  102.  
  103. this.currentText += this.tagBuffer;
  104.  
  105. this.currentChar++;
  106.  
  107. this.run();
  108.  
  109. return;
  110.  
  111. } else
  112.  
  113. if(this.inTag) {
  114.  
  115. this.tagBuffer += this.origText.charAt(this.currentChar);
  116.  
  117. this.currentChar++;
  118.  
  119. this.run();
  120.  
  121. return;
  122.  
  123. } else
  124.  
  125. if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  126.  
  127. this.HTMLEntityBuffer = "&";
  128.  
  129. this.inHTMLEntity = true;
  130.  
  131. this.currentChar++;
  132.  
  133. this.run();
  134.  
  135. return;
  136.  
  137. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  138.  
  139. this.HTMLEntityBuffer += ";";
  140.  
  141. this.inHTMLEntity =
  142.  
  143. false;
  144.  
  145. this.currentText += this.HTMLEntityBuffer;
  146.  
  147. this.currentChar++;
  148.  
  149. this.run();
  150.  
  151. return;
  152.  
  153. } else if(this.inHTMLEntity) {
  154.  
  155. this.HTMLEntityBuffer +=
  156.  
  157. this.origText.charAt(this.currentChar);
  158.  
  159. this.currentChar++;
  160.  
  161. this.run();
  162.  
  163. return;
  164.  
  165. } else {
  166.  
  167. this.currentText += this.origText.charAt(this.currentChar);
  168.  
  169. }
  170.  
  171. this.element.innerHTML = this.currentText;
  172.  
  173. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ?
  174.  
  175. this.cursor(this.currentText) : this.cursor) : "");
  176.  
  177. this.currentChar++;
  178.  
  179. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()",
  180.  
  181. this.interval);
  182.  
  183. } else {
  184.  
  185. this.currentText = "";
  186.  
  187. this.currentChar = 0;
  188.  
  189. this.running = false;
  190.  
  191. this.finishedCallback();
  192.  
  193. }
  194.  
  195. }
  196.  
  197.  
  198. /*]]>*/</script></head>
  199. <style>
  200.  
  201. body {
  202. background :white;
  203. background-image:;
  204. background-repeat:no-repeat;
  205. background-attachment: fixed;
  206. background-size: 1350px;
  207. font-family : Courier new;
  208. text-align : center;
  209. color : #fff;
  210. }
  211. pre {
  212. margin-top: 9%;
  213. }
  214.  
  215.  
  216.  
  217. .error {
  218. text-align: center;
  219. font-family: 'Gilda Display', serif;
  220. -webkit-animation: noise-3 1s linear infinite;
  221. animation: noise-3 1s linear infinite;
  222. overflow: default;
  223. }
  224.  
  225.  
  226. .info {
  227. text-align: center;
  228. width: 200px;
  229. height: 60px;
  230. margin: auto;
  231. position: absolute;
  232. top: 280px;
  233. bottom: 0;
  234. left: 20px;
  235. right: 0;
  236. -webkit-animation: noise-3 1s linear infinite;
  237. animation: noise-3 1s linear infinite;
  238. }
  239.  
  240.  
  241. .info:after {
  242. content: 'OWNED';
  243. font-family: OCR-A;
  244. font-size: 100px;
  245. text-align: center;
  246. width: 800px;
  247. margin: auto;
  248. position: absolute;
  249. top: 20px;
  250. bottom: 0;
  251. left: 40px;
  252. right: 0;
  253. opacity: 0;
  254. color: white;
  255. -webkit-animation: noise-1 .2s linear infinite;
  256. animation: noise-1 .2s linear infinite;
  257. }
  258.  
  259. @-webkit-keyframes noise-1 {
  260. 0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  261. 10% {opacity: .1;}
  262. 50% {opacity: .5; left: -6px;}
  263. 80% {opacity: .3;}
  264. 100% {opacity: .6; left: 2px;}
  265. }
  266.  
  267. @keyframes noise-1 {
  268. 0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  269. 10% {opacity: .1;}
  270. 50% {opacity: .5; left: -6px;}
  271. 80% {opacity: .3;}
  272. 100% {opacity: .6; left: 2px;}
  273. }
  274.  
  275. @-webkit-keyframes noise-2 {
  276. 0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  277. 10% {opacity: .1;}
  278. 50% {opacity: .5; left: 6px;}
  279. 80% {opacity: .3;}
  280. 100% {opacity: .6; left: -2px;}
  281. }
  282.  
  283. @keyframes noise-2 {
  284. 0%, 20%, 40%, 60%, 70%, 90% {opacity: 0;}
  285. 10% {opacity: .1;}
  286. 50% {opacity: .5; left: 6px;}
  287. 80% {opacity: .3;}
  288. 100% {opacity: .6; left: -2px;}
  289. }
  290.  
  291. @-webkit-keyframes noise {
  292. 0%, 3%, 5%, 42%, 44%, 100% {opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1);}
  293. 4.3% {opacity: 1; -webkit-transform: scaleY(1.7); transform: scaleY(1.7);}
  294. 43% {opacity: 1; -webkit-transform: scaleX(1.5); transform: scaleX(1.5);}
  295. }
  296.  
  297. @keyframes noise {
  298. 0%, 3%, 5%, 42%, 44%, 100% {opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1);}
  299. 4.3% {opacity: 1; -webkit-transform: scaleY(1.7); transform: scaleY(1.7);}
  300. 43% {opacity: 1; -webkit-transform: scaleX(1.5); transform: scaleX(1.5);}
  301. }
  302.  
  303. @-webkit-keyframes noise-3 {
  304. 0%,3%,5%,42%,44%,100% {opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1);}
  305. 4.3% {opacity: 1; -webkit-transform: scaleY(4); transform: scaleY(4);}
  306. 43% {opacity: 1; -webkit-transform: scaleX(10) rotate(60deg); transform: scaleX(10) rotate(60deg);}
  307. }
  308.  
  309. @keyframes noise-3 {
  310. 0%,3%,5%,42%,44%,100% {opacity: 1; -webkit-transform: scaleY(1); transform: scaleY(1);}
  311. 4.3% {opacity: 1; -webkit-transform: scaleY(4); transform: scaleY(4);}
  312. 43% {opacity: 1; -webkit-transform: scaleX(10) rotate(60deg); transform: scaleX(10) rotate(60deg);}
  313. }
  314.  
  315. .wrap {
  316. top: 30%;
  317. left: 25%;
  318.  
  319. height: 200px;
  320.  
  321. margin-top: -100px;
  322. position: absolute;
  323. }
  324. code {
  325. color: white;
  326. }
  327. span.blue {
  328. color: #48beef;
  329. }
  330. span.comment {
  331. color: #7f8c8d;
  332. }
  333. span.orange {
  334. color: #f39c12;
  335. }
  336. span.green {
  337. color: #33cc33;
  338. }
  339.  
  340. .viewFull {
  341. font-family:OCR-A;
  342. color:orange;
  343. text-decoration:;
  344. }
  345.  
  346.  
  347. }
  348.  
  349. @media only screen and (min-height: 500px) {
  350.  
  351. .viewFull{
  352. display:none;
  353. }
  354.  
  355. }
  356. </style>
  357. <body>
  358. <div class="error"><img style="width:300px;" src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcSUzdv8RfdLsKa9oG3X5jEdnQrHxbukrALwf68BNzgjklaViP4Y"><br>
  359. <font color="black">
  360. <font size="7">Hacked By<br>
  361. <font color="red">
  362. <font size="6">Mr.MR.B31N</br>
  363. <font face="courier new"><p id="Neko08Team">
  364. <font color="black">
  365. <font size="5">Sekali anda memahami, seribu kali anda mengerti</br>
  366. <font color="red">Befikirlah sebagai seorang pemula, maka dunia ini akan terbuka bagimu.<br>
  367. <font face="courier new"><p id="Neko08Team
  368. <font color="green">
  369. <font size="7">
  370. Semoga Website Ini Cepat diperbaiki amin..</br>
  371. <font face="courier new"><p id="Neko08Team">
  372. <font color="Red">
  373. #Mr.B31N<br>
  374. <font color="Red">
  375. #Thanks To ALLAH SWT</br>
  376. <font color="black">
  377. #SumutCyberArmy<script type="text/javascript">/*<![CDATA[*/
  378.  
  379. new TypingText(document.getElementById("Neko08Team"), 90, function(i){ var ar = new Array("_", " ", "_", " "); return " " +
  380.  
  381. ar[i.length % ar.length]; });
  382.  
  383.  
  384. //Type out examples:
  385.  
  386. TypingText.runAll();
  387.  
  388. /*]]>*/</script>
  389. </body>
  390. </html>
  391. <html>
  392. <head>
  393. <title>Atribut loop di elemen audio</title>
  394. </head>
  395. <body>
  396. <audio src="https://youtu.be/fFrk17oFRyE" loop controls></audio>
  397. </body>
  398. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement