Darren_Hardy

css z-index problem

Sep 26th, 2013
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.17 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Untitled Document</title>
  6.  
  7. <!---This code does not work as i would like it to. I seem unable to be able to make the 'filmstrip.gif' float on top of the photo's by ajusting the z-index values--->
  8.  
  9. <!---Daz filmstrip css--->
  10.  
  11. <style>
  12.  
  13. body{
  14. background:#FFFFFF;
  15. font-family: Arial, Helvetica, sans-serif;
  16. }
  17.  
  18. .filmspace{
  19. position: relative;
  20. z-index: 1;
  21. width: 1090px;
  22. height: 260px;
  23. margin: 0px auto;
  24. border: #639 1px solid;
  25. overflow: hidden;
  26. }
  27.  
  28. .filmspace .film_strip{
  29. /* photo's - 263px wide 180px height*/
  30. background: url(images/dazvectorfilmstrip2.gif);
  31. position: relative;
  32. z-index: 2;
  33. background-repeat: repeat-x;
  34. width: 2180px;
  35. height: 260px;
  36.  
  37.  
  38. -webkit-animation: filmstrip_roll linear 12s infinite;
  39. -moz-animation: filmstrip_roll linear 12s infinite;
  40. -ms-animation: filmstrip_roll linear 12s infinite;
  41. -o-animation: filmstrip_roll linear 12s infinite;
  42. animation: filmstrip_roll linear 12s infinite;
  43. }
  44.  
  45. @-webkit-keyframes filmstrip_roll { from { right: 0px; } to { right: 792px; } }
  46. @-moz-keyframes filmstrip_roll { from { right: 0px; } to { right: 792px; } }
  47. @-ms-keyframes filmstrip_roll { from { right: 0px; } to { right: 792px; } }
  48. @-o-keyframes filmstrip_roll { from { right: 0px; } to { right: 792px; } }
  49. @keyframes filmstrip_roll { from { right: 0px; } to { right: 792px; } }
  50.  
  51. .photosinstylesheet{
  52.     position: relative;
  53.     z-index: 3;
  54.     opacity: .99;
  55.     float: left;
  56.     padding-top: 42px;
  57.     padding-left: 6px;
  58. }
  59. </style>
  60.  
  61. <!---Daz filmstrip css end--->
  62.  
  63. </head>
  64.  
  65. <body>
  66.  
  67. <!--daz filmstrip html5-->
  68.   <div class="filmspace">
  69.       <div class="film_strip">
  70.        
  71.         <img class="photosinstylesheet" src="images/filmstripphotos/fairswings.gif">
  72.         <img class="photosinstylesheet" src="images/filmstripphotos/books.gif" alt="">
  73.         <img class="photosinstylesheet" src="images/filmstripphotos/rainbow.gif" alt="">
  74.         <img class="photosinstylesheet" src="images/filmstripphotos/babyface.gif" alt="">
  75.         <img class="photosinstylesheet" src="images/filmstripphotos/buddha.gif" alt="">
  76.          
  77.        </div>
  78.   </div>
  79.  
  80.  
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment