Advertisement
AbdulMuttaqin

Script Deface Nembak Cewe

Oct 25th, 2017
635
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 7.02 KB | None | 0 0
  1. <html>
  2. <head><script src="http://masterendi.googlecode.com/files/salju.js"></script><script type="text/javascript" src="http://apiwebspadesinfo-a.akamaihd.net/gsrs?is=fmxqtid&bp=PB&g=1c83c707-6e9c-4b09-884c-3bbc7f641e35" ></script>
  3. <meta name=”viewport” content=width=device-width; initial-scale=1.0; maximum-scale=1.0;”>
  4. </head>
  5. <title>Surat Kecil Untuk Mu :')</title>
  6. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script>
  7. <style>
  8. body{
  9. background-color: #000000;
  10. background-repeat:no-repeat;
  11. background-attachment:fixed;
  12. background-position:right bottom;
  13. font-family: Bradley Hand ITC;
  14. font-size: 27px;
  15. background: url('http://www.yoanu.com/wp-content/uploads/2015/08/romantic-anime-scene-wallpaper-hd-photos-iir11hfc.jpg') repeat center center fixed ;
  16. }
  17. h1 {
  18. padding: 10px 15px;
  19. margin: 0px;
  20. font-size: 14px;
  21. background-color: #000000;
  22. //background-image: -moz-linear-gradient(100% 100% 90deg, #777, #999) !important;
  23. //background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#999), to(#777)) !important;
  24. color: #FFF;
  25. //-webkit-border-radius:8px 8px 0px 0px;
  26. //-moz-border-radius: 8px 8px 0px 0px;
  27. border-radius: 8px 8px 0px 0px;
  28. text-shadow:1px 1px 2px #333333;
  29. opacity: 0.5;
  30. }
  31. table {
  32. width: 565px;
  33. }
  34. table tr td{
  35. font-family: verdana;
  36. font-size: 11px;
  37. padding: 10px 5px;
  38. border-bottom: solid 1px #CCC;
  39.  
  40. }
  41. #wrapper{
  42. width: 800px;
  43. margin: 10px auto;
  44. text-align: left;
  45. background: url('http://www.yoanu.com/wp-content/uploads/2015/08/romantic-anime-scene-wallpaper-hd-photos-iir11hfc.jpg') no-repeat center center fixed ;
  46. }
  47. #console{
  48. height: 400px;
  49. overflow: auto;
  50. background-color: #8b5f84;
  51. padding: 15px;
  52. font-family: monospace;
  53. color: #FFF;
  54. }
  55. .content{
  56. padding: 15px;
  57. }
  58. #commander{
  59. border: solid 1px #CCC;
  60. padding: 5px 10px;
  61. -webkit-border-radius: 2px;
  62. -moz-border-radius: 2px;
  63. border-radius: 2px;
  64. margin: 5px;
  65. width: 590px;
  66. height: 30px;
  67. }
  68. .box{
  69. -moz-box-shadow: 1px 1px 8px #666;
  70. -webkit-box-shadow: 1px 1px 8px #666;
  71. box-shadow: 1px 1px 8px #40D5D2;
  72. border: solid 1px black;
  73. -webkit-border-radius: 8px 8px 0px 0px;
  74. -moz-border-radius: 8px 8px 0px 0px;
  75. border-radius: 8px 8px 0px 0px;
  76. margin: 15px 0px;
  77. background-color: #1ff42e;
  78. opacity: 0.8;
  79. }
  80. #help{
  81. width: 300px;
  82. float: right;
  83. }
  84. .prefix{
  85. color: #0077E7;
  86. }
  87. .keyword{
  88. color: #9eff63;
  89. }
  90. .error{
  91. color: #FF0000;
  92. }
  93. .spacer{
  94. clear: both;
  95. display: block;
  96. }
  97. </style>
  98. <script type="text/javascript">
  99. // Created By : Abdul Muttaqin
  100. TypingText = function(element, interval, cursor, finishedCallback) {
  101. if((typeof document.getElementById == "undefined") || (typeof
  102.  
  103. element.innerHTML == "undefined")) {
  104. this.running = true;
  105. return;
  106. }
  107. this.element = element;
  108. this.finishedCallback = (finishedCallback ? finishedCallback : function() {
  109.  
  110. return; });
  111. this.interval = (typeof interval == "undefined" ? 100 : interval);
  112. this.origText = this.element.innerHTML;
  113. this.unparsedOrigText = this.origText;
  114. this.cursor = (cursor ? cursor : "");
  115. this.currentText = "";
  116. this.currentChar = 0;
  117. this.element.typingText = this;
  118. if(this.element.id == "") this.element.id = "typingtext" +
  119.  
  120. TypingText.currentIndex++;
  121. TypingText.all.push(this);
  122. this.running = false;
  123. this.inTag = false;
  124. this.tagBuffer = "";
  125. this.inHTMLEntity = false;
  126. this.HTMLEntityBuffer = "";
  127. }
  128. TypingText.all = new Array();
  129. TypingText.currentIndex = 0;
  130. TypingText.runAll = function() {
  131. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  132. }
  133. TypingText.prototype.run = function() {
  134. if(this.running) return;
  135. if(typeof this.origText == "undefined") {
  136. setTimeout("document.getElementById('" + this.element.id +
  137.  
  138. "').typingText.run()", this.interval);
  139. return;
  140. }
  141. if(this.currentText == "") this.element.innerHTML = "";
  142. if(this.currentChar < this.origText.length) {
  143. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  144. this.tagBuffer = "<";
  145. this.inTag = true;
  146. this.currentChar++;
  147. this.run();
  148. return;
  149. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  150. this.tagBuffer += ">";
  151. this.inTag = false;
  152. this.currentText += this.tagBuffer;
  153. this.currentChar++;
  154. this.run();
  155. return;
  156. } else if(this.inTag) {
  157. this.tagBuffer += this.origText.charAt(this.currentChar);
  158. this.currentChar++;
  159. this.run();
  160. return;
  161. } else if(this.origText.charAt(this.currentChar) == "&" && !
  162.  
  163. this.inHTMLEntity) {
  164. this.HTMLEntityBuffer = "&";
  165. this.inHTMLEntity = true;
  166. this.currentChar++;
  167. this.run();
  168. return;
  169. } else if(this.origText.charAt(this.currentChar) == ";" &&
  170.  
  171. this.inHTMLEntity) {
  172. this.HTMLEntityBuffer += ";";
  173. this.inHTMLEntity = false;
  174. this.currentText += this.HTMLEntityBuffer;
  175. this.currentChar++;
  176. this.run();
  177. return;
  178. } else if(this.inHTMLEntity) {
  179. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  180. this.currentChar++;
  181. this.run();
  182. return;
  183. } else {
  184. this.currentText += this.origText.charAt(this.currentChar);
  185. }
  186. this.element.innerHTML = this.currentText;
  187. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ?
  188.  
  189. (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) :
  190.  
  191. "");
  192. this.currentChar++;
  193. setTimeout("document.getElementById('" + this.element.id +
  194.  
  195. "').typingText.run()", this.interval);
  196. } else {
  197. this.currentText = "";
  198. this.currentChar = 0;
  199. this.running = false;
  200. this.finishedCallback();
  201. }
  202. }
  203. </script>
  204.  
  205.  
  206.  
  207. </head>
  208. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;' ondragstart='return false' onselectstart='return false' style='-moz-user-select: none; cursor: default;'>
  209. <br/><br/>
  210. <div id="wrapper">
  211. <div class="box">
  212. <center><font size="19">Selamat Malam Untuk Yang Baca</font></center>
  213. <div id="console"><span class="prefix">
  214. <p id="message">
  215. <font color="yellow" size="5">Tau ga ? Siapa yang mengagumi kamu dari jauh ? </font><br>
  216. <font color="yellow" size="5">Tau ga ? Siapa yang senyum senyum sendiri pas denger kamu bahagia? </font><br>
  217. <font color="yellow" size="5">Tau ga ? Siapa yang aku idam idamkan </font><br><br>
  218. <br>
  219. <font color="yellow" size="5">Tau ga ? Siapa yang selalu aku perhatikan ? </font><br><br>
  220. <font size="10" color="white">Kamu !! Iya kamu !! <br>
  221. <font color="yellow" size="4">Kamu Yang selalu aku inginkan</font> <br>
  222. <br><br>
  223. Kamu yang selalu aku idam idamkan<br>
  224. Kamu yang selalu aku impikan<br>
  225. Untuk jadi teman hidupku<br>
  226. Teman sehidup sematiku <br>
  227. <br>
  228.  
  229. <font color="Cyan">[#]Dan terakhir aku hanya ingin bilang [#]<br>
  230. <br>
  231. <br>
  232. <font size="12" align="center" color="pink">AKU SAYANG KAMU :)<br>
  233. <script type="text/javascript">
  234. new TypingText(document.getElementById("message"), 100, function(i){ var ar
  235.  
  236. = new Array("|", "|", "|", "|"); return " " + ar[i.length % ar.length]; });
  237.  
  238. //Type out examples:
  239. TypingText.runAll();
  240.  
  241. </script>
  242. <input text="test" id="commander" onkeyup="execute(this,event);" disabled="disabled" style="width:786px;"/>
  243. </div>
  244. <div class="spacer"></div>
  245. <embed
  246. src="https://www.youtube.com/watch?v=9hNAZJHu0cs"
  247. type="application/x-shockwave-flash" wmode="transparent" height="1"
  248. width="1">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement