Advertisement
Guest User

Script Romantis Vergo!

a guest
Nov 23rd, 2014
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.32 KB | None | 0 0
  1. BAWA NAMA PENCIPTANYA PLEASE!!!
  2. HARGAI KARYA ORANG!
  3.  
  4. <head>
  5. <style type="text/css">body{cursor: url("http://cursor.com/images/12a.gif"), auto;}body a:hover{cursor: url("http://cursor.com/images/12a.gif"), auto;}</style>
  6.  
  7. <meta name="robots" content="NOINDEX, NOFOLLOW">
  8.  
  9. <meta name="description" content="Just For You Febry">
  10.  
  11. <meta name="keyword" content=" sahabat-keyboard">
  12. <link rel="shortcut icon" href="http://1.bp.blogspot.com/_f6lBtRRQnaQ/S2t_zr0Jc-I/AAAAAAAAAFM/fZM1Hu8zezM/s320/TransLoveLogo.jpg" />
  13.  
  14. <script language="JavaScript">
  15.  
  16. var txt=" For You Febry ";
  17.  
  18. var kecepatan=75;var segarkan=null;function bergerak() { document.title=txt;
  19.  
  20. txt=txt.substring(1,txt.length)+txt.charAt(0);
  21.  
  22. segarkan=setTimeout("bergerak()",kecepatan);}bergerak();
  23.  
  24. </script>
  25.  
  26.  
  27.  
  28.  
  29. <style type="text/css">
  30.  
  31. body {background:#000000 url(http://www.animatedgif.net/love/kjvhearti_e0.gif) repeat scroll center 0;
  32.  
  33. </style>
  34.  
  35. <link href="http://png-3.findicons.com/files//icons/376/the_blacy/128/black_heart.png">
  36. <script type="text/javascript">
  37.  
  38. TypingText = function(element, interval, cursor, finishedCallback) {
  39.  
  40. if((typeof document.getElementById == "undefined") || (typeof element.innerHTML == "undefined")) {
  41.  
  42. this.running = true; // Never run.
  43.  
  44. return;
  45.  
  46. }
  47.  
  48. this.element = element;
  49.  
  50. this.finishedCallback = (finishedCallback ? finishedCallback : function() { return; });
  51.  
  52. this.interval = (typeof interval == "undefined" ? 20 : interval);
  53.  
  54. this.origText = this.element.innerHTML;
  55.  
  56. this.unparsedOrigText = this.origText;
  57.  
  58. this.cursor = (cursor ? cursor : "");
  59.  
  60. this.currentText = "";
  61.  
  62. this.currentChar = 0;
  63.  
  64. this.element.typingText = this;
  65.  
  66. if(this.element.id == "") this.element.id = "typingtext" + TypingText.currentIndex++;
  67.  
  68. TypingText.all.push(this);
  69.  
  70. this.running = false;
  71.  
  72. this.inTag = false;
  73.  
  74. this.tagBuffer = "";
  75.  
  76. this.inHTMLEntity = false;
  77.  
  78. this.HTMLEntityBuffer = "";
  79.  
  80. }
  81.  
  82. TypingText.all = new Array();
  83.  
  84. TypingText.currentIndex = 0;
  85.  
  86. TypingText.runAll = function() {
  87.  
  88. for(var i = 0; i < TypingText.all.length; i++) TypingText.all[i].run();
  89.  
  90. }
  91.  
  92. TypingText.prototype.run = function() {
  93.  
  94. if(this.running) return;
  95.  
  96. if(typeof this.origText == "undefined") {
  97.  
  98. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval); // We haven't finished loading yet. Have patience.
  99.  
  100. return;
  101.  
  102. }
  103.  
  104. if(this.currentText == "") this.element.innerHTML = "";
  105.  
  106. // this.origText = this.origText.replace(/<([^<])*>/, ""); // Strip HTML from text.
  107.  
  108. if(this.currentChar < this.origText.length) {
  109.  
  110. if(this.origText.charAt(this.currentChar) == "<" && !this.inTag) {
  111.  
  112. this.tagBuffer = "<";
  113.  
  114. this.inTag = true;
  115.  
  116. this.currentChar++;
  117.  
  118. this.run();
  119.  
  120. return;
  121.  
  122. } else if(this.origText.charAt(this.currentChar) == ">" && this.inTag) {
  123.  
  124. this.tagBuffer += ">";
  125.  
  126. this.inTag = false;
  127.  
  128. this.currentText += this.tagBuffer;
  129.  
  130. this.currentChar++;
  131.  
  132. this.run();
  133.  
  134. return;
  135.  
  136. } else if(this.inTag) {
  137.  
  138. this.tagBuffer += this.origText.charAt(this.currentChar);
  139.  
  140. this.currentChar++;
  141.  
  142. this.run();
  143.  
  144. return;
  145.  
  146. } else if(this.origText.charAt(this.currentChar) == "&" && !this.inHTMLEntity) {
  147.  
  148. this.HTMLEntityBuffer = "&";
  149.  
  150. this.inHTMLEntity = true;
  151.  
  152. this.currentChar++;
  153.  
  154. this.run();
  155.  
  156. return;
  157.  
  158. } else if(this.origText.charAt(this.currentChar) == ";" && this.inHTMLEntity) {
  159.  
  160. this.HTMLEntityBuffer += ";";
  161.  
  162. this.inHTMLEntity = false;
  163.  
  164. this.currentText += this.HTMLEntityBuffer;
  165.  
  166. this.currentChar++;
  167.  
  168. this.run();
  169.  
  170. return;
  171.  
  172. } else if(this.inHTMLEntity) {
  173.  
  174. this.HTMLEntityBuffer += this.origText.charAt(this.currentChar);
  175.  
  176. this.currentChar++;
  177.  
  178. this.run();
  179.  
  180. return;
  181.  
  182. } else {
  183.  
  184. this.currentText += this.origText.charAt(this.currentChar);
  185.  
  186. }
  187.  
  188. this.element.innerHTML = this.currentText;
  189.  
  190. this.element.innerHTML += (this.currentChar < this.origText.length - 1 ? (typeof this.cursor == "function" ? this.cursor(this.currentText) : this.cursor) : "");
  191.  
  192. this.currentChar++;
  193.  
  194. setTimeout("document.getElementById('" + this.element.id + "').typingText.run()", this.interval);
  195.  
  196. } else {
  197.  
  198. this.currentText = "";
  199.  
  200. this.currentChar = 0;
  201.  
  202. this.running = false;
  203.  
  204. this.finishedCallback();
  205.  
  206. }
  207.  
  208. }
  209.  
  210. </script>
  211.  
  212.  
  213.  
  214.  
  215.  
  216.  
  217.  
  218. <link rel="openid.server" href="http://www.blogger.com/openid-server.g" />
  219. </head>
  220. <script src='http://misbahudin-dcaesga.googlecode.com/files/efek-salju.js'/>
  221. <script src='http://misbahudin.googlecode.com/files/daun%20gugur.js'/>
  222.  
  223.  
  224.  
  225. <body oncontextmenu='return false;' onkeydown='return false;' onmousedown='return false;'>
  226.  
  227. <script type='text/javascript'>
  228.  
  229. //<![CDATA[
  230.  
  231. var message="Vergo Was Here";
  232.  
  233. function clickIE() {if (document.all) {(message);return false;}}
  234.  
  235. function clickNS(e) {if (document.layers||(document.getElementById&&!document.all)) {
  236.  
  237. if (e.which==2||e.which==3) {(message);return false;}}}
  238.  
  239. if (document.layers)
  240.  
  241. {document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
  242.  
  243. else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
  244.  
  245. document.oncontextmenu=new Function("return false")
  246.  
  247. //]]>
  248.  
  249. </script>
  250.  
  251.  
  252.  
  253.  
  254. <script type="text/javascript">
  255. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursorfuchsia.js
  256. "></script>
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263. </SCRIPT>
  264.  
  265.  
  266.  
  267.  
  268. <h1>
  269. <center>
  270. <script>
  271.  
  272. farbbibliothek = new Array();
  273.  
  274. farbbibliothek[0] = new Array("#FF0000","#FF1100","#FF2200","#FF3300","#FF4400","#FF5500","#FF6600","#FF7700","#FF8800","#FF9900","#FFaa00","#FFbb00","#FFcc00","#FFdd00","#FFee00","#FFff00","#FFee00","#FFdd00","#FFcc00","#FFbb00","#FFaa00","#FF9900","#FF8800","#FF7700","#FF6600","#FF5500","#FF4400","#FF3300","#FF2200","#FF1100");
  275.  
  276. farbbibliothek[1] = new Array("#00FF00","#000000","#00FF00","#00FF00");
  277.  
  278. farbbibliothek[2] = new Array("#00FF00","#FF0000","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00","#00FF00");
  279.  
  280. farbbibliothek[3] = new Array("#FF0000","#FF4000","#FF8000","#FFC000","#FFFF00","#C0FF00","#80FF00","#40FF00","#00FF00","#00FF40","#00FF80","#00FFC0","#00FFFF","#00C0FF","#0080FF","#0040FF","#0000FF","#4000FF","#8000FF","#C000FF","#FF00FF","#FF00C0","#FF0080","#FF0040");
  281.  
  282. farbbibliothek[4] = new Array("#FF0000","#EE0000","#DD0000","#CC0000","#BB0000","#AA0000","#990000","#880000","#770000","#660000","#550000","#440000","#330000","#220000","#110000","#000000","#110000","#220000","#330000","#440000","#550000","#660000","#770000","#880000","#990000","#AA0000","#BB0000","#CC0000","#DD0000","#EE0000");
  283.  
  284. farbbibliothek[5] = new Array("#000000","#000000","#000000","#FFFFFF","#FFFFFF","#FFFFFF");
  285.  
  286. farbbibliothek[6] = new Array("#0000FF","#FFFF00");
  287.  
  288. farben = farbbibliothek[4];
  289.  
  290. function farbschrift()
  291.  
  292. {
  293.  
  294. for(var i=0 ; i<Buchstabe.length; i++)
  295.  
  296. {
  297.  
  298. document.all["a"+i].style.color=farben[i];
  299.  
  300. }
  301.  
  302. farbverlauf();
  303.  
  304. }
  305.  
  306. function string2array(text)
  307.  
  308. {
  309.  
  310. Buchstabe = new Array();
  311.  
  312. while(farben.length<text.length)
  313.  
  314. {
  315.  
  316. farben = farben.concat(farben);
  317.  
  318. }
  319.  
  320. k=0;
  321.  
  322. while(k<=text.length)
  323.  
  324. {
  325.  
  326. Buchstabe[k] = text.charAt(k);
  327.  
  328. k++;
  329.  
  330. }
  331.  
  332. }
  333.  
  334. function divserzeugen()
  335.  
  336. {
  337.  
  338. for(var i=0 ; i<Buchstabe.length; i++)
  339.  
  340. {
  341.  
  342. document.write("<span id='a"+i+"' class='a"+i+"'>"+Buchstabe[i] + "</span>");
  343.  
  344. }
  345.  
  346. farbschrift();
  347.  
  348. }
  349.  
  350. var a=1;
  351.  
  352. function farbverlauf()
  353.  
  354. {
  355.  
  356. for(var i=0 ; i<farben.length; i++)
  357.  
  358. {
  359.  
  360. farben[i-1]=farben[i];
  361.  
  362. }
  363.  
  364. farben[farben.length-1]=farben[-1];
  365.  
  366.  
  367.  
  368.  
  369. setTimeout("farbschrift()",30);
  370.  
  371. }
  372.  
  373. //
  374.  
  375. var farbsatz=1;
  376.  
  377. function farbtauscher()
  378.  
  379. {
  380.  
  381. farben = farbbibliothek[farbsatz];
  382.  
  383. while(farben.length<text.length)
  384.  
  385. {
  386.  
  387. farben = farben.concat(farben);
  388.  
  389. }
  390.  
  391. farbsatz=Math.floor(Math.random()*(farbbibliothek.length-0.0001));
  392.  
  393. }
  394.  
  395. setInterval("farbtauscher()",5000);
  396.  
  397. text= "Hacked By Vergo Reiner "; //h
  398.  
  399. string2array(text);
  400.  
  401. divserzeugen();
  402.  
  403. //document.write(text);
  404.  
  405. </SCRIPT></center>
  406. </h1>
  407. <table border="5" width="100%" height="300" cellpadding="5" bgcolor="black">
  408. <tr>
  409.  
  410. <td width="30%" align="center" valign="center">
  411.  
  412. <img src="https://fbcdn-sphotos-c-a.akamaihd.net/hphotos-ak-xpa1/v/t1.0-9/10557374_302331529939692_8528585294637299396_n.jpg?oh=4f7f49aeceade4a316ad1924b0a96dcc&oe=54D4B08B&__gda__=1427695667_3f07764f250d9bc8dc04b750dd99d946" align="middle" border="0" width="300" height="400" /><br />
  413.  
  414.  
  415.  
  416. </td>
  417.  
  418.  
  419. <td width="70%" align="center">
  420.  
  421.  
  422.  
  423.  
  424. <font color="#00BFFF" size="3"><code>
  425.  
  426. <div id="example1">
  427. </div>
  428. <p id="example2">
  429. :: <blink>FEBRY LIANTI</blink> :: <br /><br />
  430.  
  431.  
  432. ===========================================<br />
  433. Sudah lama kupendam perasaan ini <br>
  434. tapi aku takut untuk memberi tahu kamu<br>
  435. aku suka sama kamu febry<br>
  436. setidaknya aku sudah usaha semaksimal yang ku bisa<br>
  437. yah kalau kayak gini memang ga romantis sih , ga gentle juga :'(<br>
  438. tapi kemampuanku hanya disini :'(<br>
  439. ===========================================<br />
  440.  
  441. </p>
  442. </object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><center>
  443. </object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><param value="mp3=http://www.blue-tube.hu/images/hsh.mp3
  444. &loop=1&autoplay=1&volume=125" name="FlashVars" /></object>
  445.  
  446.  
  447. <script type="text/javascript">
  448.  
  449. //Define first typing example:
  450.  
  451. new TypingText(document.getElementById("example1"));
  452.  
  453. //Define second typing example (use "slashing" cursor at the end):
  454.  
  455. new TypingText(document.getElementById("example2"), 50, function(i){
  456.  
  457. var ar = new Array("_"," ","_","_"); return " " + ar[i.length %
  458.  
  459. ar.length]; });
  460.  
  461. //Type out examples:
  462.  
  463. TypingText.runAll();
  464.  
  465. </script></div>
  466. </code></font>
  467. </td>
  468.  
  469.  
  470.  
  471.  
  472. </tr>
  473. </table>
  474. <table width="100%" border="5" bgcolor="pink">
  475. <tr><td align="center">
  476.  
  477.  
  478.  
  479.  
  480. </td></tr>
  481. </table>
  482. <br />
  483.  
  484. <br />
  485.  
  486.  
  487.  
  488. <table width="100%" border="2">
  489. <tr>
  490.  
  491. <td width="15%" align="center">
  492.  
  493. <font color="Gold"><code><blink>Pesan :<blink></code></font>
  494.  
  495.  
  496.  
  497.  
  498. </td>
  499.  
  500.  
  501.  
  502.  
  503.  
  504.  
  505. <td width="80%">
  506.  
  507.  
  508.  
  509.  
  510. <font color="Violet">
  511.  
  512.  
  513.  
  514. <marquee><code>
  515.  
  516.  
  517.  
  518. <BR/> KAMU MAU GA JADI PACAR AKU ? </blink><BR/>
  519.  
  520. </code></marquee>
  521.  
  522.  
  523.  
  524. </font>
  525.  
  526.  
  527.  
  528. </td>
  529.  
  530.  
  531.  
  532. </tr>
  533. </html>
  534.  
  535. </script>
  536. <script language="javascript" src="http://zianxfly.250free.com/js/saljucursoraqua.js"></script>
  537. <body background = "http://lh5.ggpht.com/_O3Mkjo7Ekyo/SjF22CmjbjI/AAAAAAAAA3o/yByfvwhYwuw/_br04.gif" style="cursor: crosshair">
  538. //-->
  539. </Script>
  540. <!-- Hosting24 Analytics Code -->
  541. <script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
  542. <!-- End Of Analytics Code --></quote><script type="text/javascript" src="https://www.blogger.com/static/v1/common/js/2858158682-csitail.js"></script>
  543. <script type="text/javascript">BLOG_initCsi('classic_blogspot');</script></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement