Advertisement
MaygeKyatt

slideshow test

May 12th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. .side:before {
  2. width: 300px;
  3. border: 1px solid #222;
  4. }
  5.  
  6. .side:before {
  7. -webkit-animation: hide 1s linear infinite;
  8. animation: hide 1s linear infinite;
  9. }
  10.  
  11. .side:before {
  12. display: block;
  13. position: absolute;
  14. left: 2px;
  15. top: 21px;
  16. background-size: cover;
  17. background-position: 0;
  18. opacity: 0;
  19. z-index: 0;
  20. overflow: hidden;
  21. -webkit-animation: image1 40s linear infinite;
  22. animation: image1 40s linear infinite;
  23. }
  24.  
  25. .side:before:nth-child(5) {
  26. opacity: 1;
  27. z-index: 1;
  28. background-image: url(%%image1%%);
  29. }
  30.  
  31. .side:before:nth-child(4) {
  32. background-image: url(%%image2%%);
  33. -webkit-animation-name: image2;
  34. animation-name: image2;
  35. }
  36. .side:before:nth-child(3) {
  37. background-image: url(%%image3%%);
  38. -webkit-animation-name: image3;
  39. animation-name: image3;
  40. }
  41. .side:before:nth-child(2) {
  42. background-image: url(%%image4%%);
  43. -webkit-animation-name: image4;
  44. animation-name: image4;
  45. }
  46. .side:before:nth-child(1) {
  47. background-image: url(%%image5%%);
  48. -webkit-animation-name: image5;
  49. animation-name: image5;
  50. }
  51.  
  52. @keyframes image1 {
  53. 16%{opacity:1} 20%{opacity:0;z-index:1} 21%{z-index:0} 95%{z-index:0} 96%{opacity:0;z-index:1}
  54. }
  55. @keyframes image2 {
  56. 16%{opacity:0;z-index:1} 20%{opacity:1} 36%{opacity:1} 40%{opacity:0;z-index:1} 41%{z-index:0}
  57. }
  58. @keyframes image3 {
  59. 36%{opacity:0;z-index:1} 40%{opacity:1} 56%{opacity:1} 60%{opacity:0;z-index:1} 61%{z-index:0}
  60. }
  61. @keyframes image4 {
  62. 56%{opacity:0;z-index:1} 60%{opacity:1} 76%{opacity:1} 80%{opacity:0;z-index:1} 81%{z-index:0}
  63. }
  64. @keyframes image5 {
  65. 1%{z-index:0} 76%{opacity:0;z-index:1} 80%{opacity:1} 96%{opacity:1} 100%{opacity:0;z-index:1}
  66. }
  67. @keyframes hide {
  68. 0%{opacity:0} 1%{opacity:0} 100%{opacity:0}
  69. }
  70.  
  71. @-webkit-keyframes image1 {
  72. 16%{opacity:1} 20%{opacity:0;z-index:1} 21%{z-index:0} 95%{z-index:0} 96%{opacity:0;z-index:1}
  73. }
  74. @-webkit-keyframes image2 {
  75. 16%{opacity:0;z-index:1} 20%{opacity:1} 36%{opacity:1} 40%{opacity:0;z-index:1} 41%{z-index:0}
  76. }
  77. @-webkit-keyframes image3 {
  78. 36%{opacity:0;z-index:1} 40%{opacity:1} 56%{opacity:1} 60%{opacity:0;z-index:1} 61%{z-index:0}
  79. }
  80. @-webkit-keyframes image4 {
  81. 56%{opacity:0;z-index:1} 60%{opacity:1} 76%{opacity:1} 80%{opacity:0;z-index:1} 81%{z-index:0}
  82. }
  83. @-webkit-keyframes image5 {
  84. 1%{z-index:0} 76%{opacity:0;z-index:1} 80%{opacity:1} 96%{opacity:1} 100%{opacity:0;z-index:1}
  85. }
  86. @-webkit-keyframes hide {
  87. 0%{opacity:0} 1%{opacity:0} 100%{opacity:0}
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement