Guest User

Untitled

a guest
Mar 18th, 2017
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. #buehne:hover figcaption {
  2. left: 0;
  3. }
  4.  
  5. .laden {
  6. position: relative;
  7. background: linear-gradient(90deg, #f00, #ffa500, #ff0, #008000, #00f, #800080);
  8. width: 37.5em;
  9. height: 0.125em;
  10. bottom: -398px;
  11. animation: balken 6s ease-out infinite;
  12. z-index: 2;
  13. }
  14.  
  15. @keyframes balken {
  16. 0% {
  17. width: 0;
  18. opacity: 0;
  19. }
  20.  
  21. 10% {
  22. width: 0;
  23. opacity: 0.20000000298023223876953125;
  24. }
  25.  
  26. 80% {
  27. width: 100%;
  28. opacity: 0.800000011920928955078125;
  29. }
  30.  
  31. 100% {
  32. width: 100%;
  33. opacity: 0;
  34. }
  35. }
  36.  
  37. .pause {
  38. position: absolute;
  39. top: 5px;
  40. left: 570px;
  41. color: #eee;
  42. font: bolder 1.3em/2 Impact;
  43. opacity: 0;
  44. transition: 0.5s;
  45. z-index: 2;
  46. }
  47.  
  48. .pause:after {
  49. content: 'I I';
  50. }
  51.  
  52. #buehne:hover .pause {
  53. opacity: 1;
  54. }
  55.  
  56. #buehne figure:nth-of-type(1) {
  57. animation: bild 96s ease-out infinite;
  58. }
  59.  
  60. #buehne figure:nth-of-type(2) {
  61. animation: bild 96s 6s ease-out infinite;
  62. }
  63.  
  64. #buehne figure:nth-of-type(3) {
  65. animation: bild 96s 12s ease-out infinite;
  66. }
  67.  
  68. #buehne figure:nth-of-type(4) {
  69. animation: bild 96s 18s ease-out infinite;
  70. }
  71.  
  72. #buehne figure:nth-of-type(5) {
  73. animation: bild 96s 24s ease-out infinite;
  74. }
  75.  
  76. #buehne figure:nth-of-type(6) {
  77. animation: bild 96s 30s ease-out infinite;
  78. }
  79.  
  80. #buehne figure:nth-of-type(7) {
  81. animation: bild 96s 36s ease-out infinite;
  82. }
  83.  
  84. #buehne figure:nth-of-type(8) {
  85. animation: bild 96s 42s ease-out infinite;
  86. }
  87.  
  88. #buehne figure:nth-of-type(9) {
  89. animation: bild 96s 48s ease-out infinite;
  90. }
  91.  
  92. #buehne figure:nth-of-type(10) {
  93. animation: bild 96s 54s ease-out infinite;
  94. }
  95.  
  96. #buehne figure:nth-of-type(11) {
  97. animation: bild 96s 60s ease-out infinite;
  98. }
  99.  
  100. #buehne figure:nth-of-type(12) {
  101. animation: bild 96s 66s ease-out infinite;
  102. }
  103.  
  104. #buehne figure:nth-of-type(13) {
  105. animation: bild 96s 72s ease-out infinite;
  106. }
  107.  
  108. #buehne figure:nth-of-type(14) {
  109. animation: bild 96s 78s ease-out infinite;
  110. }
  111.  
  112. #buehne figure:nth-of-type(15) {
  113. animation: bild 96s 84s ease-out infinite;
  114. }
  115.  
  116. #buehne figure:nth-of-type(16) {
  117. animation: bild 96s 90s ease-out infinite;
  118. }
  119.  
  120. #buehne:hover figure, #buehne:hover .laden {
  121. animation-play-state: paused;
  122. }
  123.  
  124. @keyframes bild {
  125. 0% {
  126. right: -500px;
  127. z-index: 20;
  128. opacity: 1;
  129. }
  130.  
  131. 2% {
  132. right: 0px;
  133. z-index: 20;
  134. }
  135.  
  136. 5.75% {
  137. right: 0px;
  138. z-index: 20;
  139. opacity: 1;
  140. }
  141.  
  142. 6.25% {
  143. right: 0px;
  144. z-index: 10;
  145. opacity: 0;
  146. }
  147.  
  148. 12.5% {
  149. right: -500px;
  150. z-index: 10;
  151. }
  152.  
  153. 100% {
  154. right: -500px;
  155. z-index: 0;
  156. }
  157. }
Advertisement
Add Comment
Please, Sign In to add comment