Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <div id="slider">
  2. <div id="contenu">
  3. <div class="image">
  4. <img src="tn image" width="100%" height="100%"/>
  5. </div>
  6.  
  7. <div class="image">
  8. <img src="tn image" width="100%" height="100%"/>
  9. </div>
  10.  
  11. <div class="image">
  12. <img src="tn image" width="100%" height="100%"/>
  13. </div>
  14.  
  15. <div class="image">
  16. <img src="tn image" width="100%" height="100%"/>
  17. </div>
  18.  
  19. </div>
  20. </div>
  21.  
  22.  
  23.  
  24.  
  25. #slider{
  26. overflow: hidden;
  27. width: 100%;
  28. height: 40%;
  29. }
  30.  
  31. #contenu{
  32. width: 100%;
  33. height: 300px;
  34. animation-name: diapo;
  35. animation-duration: 12s;
  36. animation-iteration-count: infinite;
  37. animation-direction: alternate;
  38. }
  39.  
  40. .image {
  41. position: relative;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement