Advertisement
Guest User

Untitled

a guest
Apr 18th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <a href="#firstimg"><img src="img/thumb-3.jpg"></a>
  2. <a href="#secondimg"><img src="img/thumb-4.jpg"></a>
  3.  
  4. <a href="#" class="lightbox" id="firstimg"><img src="img/image-3.jpg"></a>
  5. <a href="#" class="lightbox" id="secondimg"><img src="img/image-4.jpg"></a>
  6.  
  7. .lightbox {
  8. display: none;
  9. position: fixed;
  10. top: 0;
  11. left: 0;
  12. z-index: 2;
  13. width: 100%;
  14. height: 100%;
  15. text-align: center;
  16. background: rgba(38, 38, 38, 0);
  17. transition: background 0.3s ease;
  18. }
  19.  
  20. .lightbox img {
  21. max-height: 90%;
  22. max-width: 70%;
  23. margin: 3%;
  24. border-radius: 5px;
  25. border: 5px solid #cbcbcb;
  26. }
  27.  
  28. .lightbox:target {
  29. display: block;
  30. background: rgba(38, 38, 38, 0.7);
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement