Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. .btn:hover {
  2. animation: buttonanim 0.3s;
  3. }
  4.  
  5. @keyframes buttonanim {
  6. 0% {
  7. left: 0;
  8. }
  9. 20% {
  10. left: -7px;
  11. }
  12. 40% {
  13. left: 4px;
  14. }
  15. 60% {
  16. left: -6px;
  17. }
  18. 80% {
  19. left: 0px;
  20. }
  21. 100% {
  22. left: 7px;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement