Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <title> www.PixelForLife.com - Sliding Block </title>
  5.  
  6. <style type="text/css">
  7. body { font: 13px sans-serif; }
  8.  
  9. #montage-wrap { width: 820px; height: 200px; }
  10. .montage-block { width: 200px; height: 200px; float: left; display: block; overflow: hidden; position: relative;
  11. margin: 0 4px 0 0; background: white; border: 1px solid #666;}
  12. .montage-block:last-child { margin: 0; } /* removes margin on last block */
  13.  
  14. #block1 { width: 200px; height: 200px; position: absolute; display: block;
  15. background: url("pixelforlife_thumb.png") no-repeat;
  16.  
  17. -webkit-transition: top .3s ease-in-out; }
  18.  
  19. .montage-block:hover #block1 { top: -150px; }
  20.  
  21. .thumb_content { padding: 70px 15px 0 15px; color: #777; }
  22. .thumb_content h1 { margin: 0 0 5px 0; color: #666; font-size: 14px; }
  23.  
  24.  
  25. </style>
  26. </head>
  27. <body>
  28.  
  29. <div id="montage-wrap">
  30.  
  31. <div class="montage-block">
  32. <span id="block1"></span>
  33. <div class="thumb_content">
  34. <h1>Sample Title</h1>
  35. <p>This is some sample title. yay for text.</p>
  36. </div>
  37. </div> <!-- block end -->
  38.  
  39. <!-- A sample Block -->
  40. <div class="montage-block">
  41. <span id="block1"></span>
  42. <div class="thumb_content">
  43. <h1>Sample Title</h1>
  44. <p>This is some sample title. yay for text.</p>
  45. </div>
  46. </div> <!-- block end -->
  47.  
  48. </div> <!-- montage wrap -->
  49.  
  50.  
  51. </body>
  52. </html>
  53.  
  54. #block1 {
  55. width: 200px;
  56. height: 200px;
  57. position: absolute;
  58. transition: all 0.5s ease-in-out;
  59. }
  60. .montage-block:hover #block1 {
  61. margin-top: -100px;
  62. }
  63.  
  64. <span id="block1"></span>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement