Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.58 KB | None | 0 0
  1. body{
  2. background-color: white;
  3. }
  4. .tekst{
  5. font-size: 45px;
  6. font-weight: bold;
  7. position: absolute;
  8. top: 40%;
  9. left:43%;
  10. font-family: sans-serif;
  11. }
  12. .slika1{
  13. position: absolute;
  14. top: 70%;
  15. left: 2%;
  16. animation-name: ani1;
  17. animation-duration: 5s;
  18. animation-iteration-count: infinite;
  19. z-index: 1;
  20. width: 400px;
  21. height: 270px;
  22. }
  23. @keyframes ani1{
  24. 0%{left: 2%;}
  25. 50%{left: 29%;}
  26. 75%{left: 29%;}
  27. 100%{left: 2%;}
  28. }
  29. .slika2{
  30. position: absolute;
  31. top: 70%;
  32. right: 2%;
  33. animation-name: ani2;
  34. animation-duration: 5s;
  35. animation-iteration-count: infinite;
  36. z-index: 2;
  37. width: 400px;
  38. height: 270px;
  39. }
  40. @keyframes ani2{
  41. 0%{right: 2%;}
  42. 50%{right: 29%;}
  43. 75%{right: 29%;}
  44. 100%{right: 2%;}
  45. }
  46. .slika3{
  47. position: absolute;
  48. top:50%;
  49. left:32%;
  50. animation-name: ani3;
  51. animation-duration: 5s;
  52. animation-iteration-count: infinite;
  53. z-index: 3;
  54. width: 700px;
  55. height: 500px;
  56. }
  57. @keyframes ani3{
  58. 0%{height: 500px;}
  59. 25%{height: 100px;}
  60. 50%{height: 100px;}
  61. 75%{height: 100px;}
  62. 100%{height: 500px;}
  63. }
  64. .prvi{
  65. position: absolute;
  66. left: 37%;
  67. top: 3%;
  68. width: 550px;
  69. height: 370px;
  70. background-color: black;
  71. }
  72. .img1{
  73. position: absolute;
  74. left:4%;
  75. top: 2%;
  76. width: 500px;
  77. height: 330px;
  78. }
  79. .img2{
  80. position: absolute;
  81. left: 4%;
  82. top: 2%;
  83. width:500px;
  84. height: 330px;
  85. }
  86. .img3{
  87. position: absolute;
  88. left: 4%;
  89. top: 2%;
  90. width:500px;
  91. height: 330px;
  92. }
  93. .img1:nth-child(1){
  94. animation: promena 9s 0s;
  95. animation-iteration-count: infinite;
  96. z-index: 3;
  97. }
  98. .img2:nth-child(2){
  99. animation: promena 9s 3s;
  100. animation-iteration-count: infinite;
  101. z-index: 2;
  102. }
  103. .img3:nth-child(3){
  104. animation: promena 9s 6s;
  105. animation-iteration-count: infinite;
  106. z-index: 1;
  107. }
  108. .tabla{
  109. position: absolute;
  110. left: 10%;
  111. top: 92%;
  112. }
  113. table{
  114. width: 60px;
  115. height: 20px;
  116. }
  117. .tri{
  118. position: absolute;
  119. left: 10%;
  120. top: 92%;
  121. }
  122. table:nth-child(1){
  123. animation: promena 9s 0s;
  124. animation-iteration-count: infinite;
  125. z-index: 3;
  126. }
  127. table:nth-child(2){
  128. animation: promena 9s 3s;
  129. animation-iteration-count: infinite;
  130. z-index: 2;
  131. }
  132. table:nth-child(3){
  133. animation: promena 9s 6s;
  134. animation-iteration-count: infinite;
  135. z-index: 1;
  136. }
  137. @keyframes promena{
  138. 0%{opacity: 1;}
  139. 25%{opacity: 1;}
  140. 50%{opacity: 0;}
  141. 75%{opacity: 0;}
  142. 100%{opacity: 1;}
  143. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement