hulkpieter

css site

Jun 25th, 2013
127
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="utf-8">
  6.  
  7. <title>Full Page Background Image | CSS #2</title>
  8.  
  9. <style>
  10.  
  11. #bg {
  12. position:fixed;
  13. top:-50%;
  14. left:-50%;
  15. width:200%;
  16. height:200%;
  17. }
  18. #bg img {
  19. position:absolute;
  20. top:0;
  21. left:0;
  22. right:0;
  23. bottom:0;
  24. margin:auto;
  25. min-width:50%;
  26. min-height:50%;
  27. }
  28.  
  29. </style>
  30. </head>
  31.  
  32. <body>
  33.  
  34.  
  35. <!-- At bottom, 'cause it's not really content -->
  36. <div id="bg">
  37. <img src="bg.png" alt="">
  38. </div>
  39.  
  40. </body>
  41.  
  42. </html>
  43.  
  44. <center>
  45. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  46.  
  47. <script type="text/javascript" src="fadeslideshow.js">
  48.  
  49.  
  50. </script>
  51.  
  52. <script type="text/javascript">
  53.  
  54. var mygallery2=new fadeSlideShow({
  55. wrapperid: "fadeshow2", //ID of blank DIV on page to house Slideshow
  56. dimensions: [563, 669], //width/height of gallery in pixels. Should reflect dimensions of largest image
  57. imagearray: [
  58. ["http://i1295.photobucket.com/albums/b635/Pieter_van_Gool/golddigger5647totaal_zpsaa06cb93.jpg", "", "", "Subscribe to win a gift-code !"],
  59. ["images/fruits.jpg", "http://en.wikipedia.org/wiki/Cave", "_new", "Have fun with your account!"],
  60. ["images/pool.jpg"],
  61. ["images/cave.jpg", "", "", "spread the word of this site !"] //<--no trailing comma after very last image element!
  62. ],
  63. displaymode: {type:'manual', pause:2500, cycles:0, wraparound:false},
  64. persist: false, //remember last viewed slide and recall within same session?
  65. fadeduration: 500, //transition duration (milliseconds)
  66. descreveal: "always",
  67. togglerid: "fadeshow2toggler",
  68. oninit: function(){
  69. jQuery('#' + this.setting.wrapperid + ' .gallerylayer').each(function(){
  70. jQuery(this).find('img').each(function(i){
  71. jQuery(this).attr('usemap', '#' + (i + 1));
  72. });
  73. });
  74. }
  75. })
  76.  
  77.  
  78. </script>
  79.  
  80. <map name="#1">
  81. <area shape="rect" coords="72,325,260,360" href="http://adf.ly/QqDnZ" alt="download this accounts">
  82. <area shape="rect" coords="72,370,260,405" href="https://www.youtube.com/mangamen00" alt="testaccount">
  83. <area shape="rect" coords="72,414,260,450" href="http://mcpremaccounts.webs.com/donate-3" alt="testaccount">
  84. <area shape="rect" coords="72,465,162,495" href="http://adf.ly/QqDnZ" alt="testaccount">
  85. <area shape="rect" coords="175,465,260,495" href="http://adf.ly/QqDnZ" alt="testaccount">
  86. </map>
  87.  
  88.  
  89.  
  90.  
  91.  
  92. <div id="fadeshow1"></div>
  93.  
  94. <br />
  95.  
  96. <div id="fadeshow2"></div>
  97.  
  98. <div id="fadeshow2toggler" style="width:250px; text-align:center; margin-top:10px">
  99. <a href="#" class="prev"><img src="http://i1295.photobucket.com/albums/b635/Pieter_van_Gool/Knipsel_zps33810075.jpg" style="border-width:0" /></a> <span class="status" style="margin:0 50px; font-weight:bold"></span> <a href="#" class="next"><img src="http://s8.gva.be/ahimgpath/assets_img_gvl/2012/06/06/2269425/milquet-motorbende-satudarah-mc-kan-voorlopig-niet-verboden-worden-id3047614-1000x800-n." style="border-width:0" /></a>
  100. </div>
  101.  
  102. </center>
RAW Paste Data