Advertisement
clarisue

arrow point

Nov 19th, 2021 (edited)
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. <style>
  2.  
  3. .point {
  4. color: white;
  5. text-shadow: -1px 0 #000, 0 1px #000, 1px 0 #000, 0 -1px #000, 0 0;
  6. font-size: 2em;
  7. animation-name: pointing;
  8. animation-duration: 1s;
  9. animation-iteration-count: infinite;
  10. animation-timing-function: ease-in-out;
  11. }
  12. @keyframes pointing {
  13. 0% { transform: translate(0, 0px); }
  14. 50% { transform: translate(10px, 0px); }
  15. 100% { transform: translate(0, 0px); }
  16. }
  17. </style>
  18.  
  19. <div class="point">→ ←</div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement