Advertisement
Guest User

Untitled

a guest
Mar 20th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. part of html
  2. <div class="arrow content-header-arrow1">
  3. <img src="icons/arrow-down.svg" alt="scroll">
  4. </div>
  5. <div class="arrow content-header-arrow2">
  6. <img src="icons/arrow-down.svg" alt="scroll">
  7. </div>
  8.  
  9. css
  10. .arrow {
  11. position: absolute;
  12. width: 100%;
  13. height: 100vh;
  14. z-index: 1;
  15. text-align: center;
  16. }
  17. .arrow img{
  18. opacity: 0;
  19. position: absolute;
  20. bottom: 5vh;
  21. }
  22. .content-header-arrow1 img {
  23. animation: arrow-movement 1.5s ease-in-out infinite; /* speed */
  24. }
  25. .content-header-arrow2 img{
  26. animation: arrow-movement 1.5s 0.75s ease-in-out infinite; /* speed - delay */
  27. }
  28. /* Animation */
  29. @keyframes arrow-movement {
  30. 0% {
  31. opacity: 0;
  32. bottom: 7vh;
  33. }
  34. 70% {
  35. opacity: 1;
  36. }
  37. 100% {
  38. opacity: 0;
  39. }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement