Advertisement
cherryprodesign

CSS Slideshow

Jul 1st, 2016
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.92 KB | None | 0 0
  1. CSS kód:
  2. #slideshow{
  3.     width: 357px; /* slideshow szélessége */
  4.     height: 775px; /* slideshow magassága*/
  5.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep1.png); /* Az első kép */
  6.     animation: fade 20s 5s infinite; /* az animáció */
  7. }
  8.  
  9. @keyframes fade {
  10.   0% {
  11.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep1.png);
  12.   }
  13.   20% {
  14.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep2.png);
  15.   }
  16.   40% {
  17.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep3.png);
  18.   }
  19.   60% {
  20.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep4.png);
  21.   }
  22.   80% {
  23.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep5.png);
  24.   }
  25.   100% {
  26.     background: url(http://onedweb.com/wp-content/themes/angel/images/kep1.png);
  27.   }
  28. }
  29.  
  30. HTML kód:
  31. <div id="slideshow"></div>
  32. Nem kellenek bele a képek.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement