Advertisement
honghoavi

Simple jQuery Slideshow - CSS

Jun 7th, 2012
12,501
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.24 KB | None | 0 0
  1. #slideshow {
  2.     position:relative;
  3.     height:350px;
  4. }
  5.  
  6. #slideshow IMG {
  7.     position:absolute;
  8.     top:0;
  9.     left:0;
  10.     z-index:8;
  11. }
  12.  
  13. #slideshow IMG.active {
  14.     z-index:10;
  15. }
  16.  
  17. #slideshow IMG.last-active {
  18.     z-index:9;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement