Advertisement
GIFCITY

knocking text

Mar 9th, 2023
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. <style>
  2. .knocking {
  3.  
  4. animation: bounce 2s infinite;
  5. animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1) width:auto;
  6. ;
  7. }
  8.  
  9. .letterone {
  10.  
  11. animation-delay: 0s;
  12. display: inline-block;
  13. }
  14.  
  15. .lettertwo {
  16.  
  17. animation-delay: 0.1s;
  18. display: inline-block;
  19. }
  20.  
  21. .letterthree {
  22.  
  23. animation-delay: 0.15s;
  24. display: inline-block;
  25. }
  26.  
  27. .letterfour {
  28.  
  29. animation-delay: 0.2s;
  30. display: inline-block;
  31. }
  32.  
  33. @keyframes bounce {
  34. 0% {
  35. transform: scale(1, 1) translateY(0);
  36. }
  37.  
  38. 10% {
  39. transform: scale(1.1, .9) translateY(0);
  40.  
  41. }
  42.  
  43. 30% {
  44. transform: scale(.9, 1.1) translateY(-30px);
  45. transform: rotate(-10deg);
  46. }
  47.  
  48. 50% {
  49. transform: scale(1.05, .95) translateY(0);
  50. transform: rotate(10deg);
  51. }
  52.  
  53. 60% {
  54. transform: scale(1, 1) translateY(-4px);
  55. transform: rotate(-10deg);
  56. }
  57.  
  58. 100% {
  59. transform: scale(1, 1) translateY(0);
  60. }
  61. }
  62. </style>
  63.  
  64. <p class="knocking letterone">t</p><p class="knocking lettertwo">e</p><p class="knocking letterthree">x</p><p class="knocking letterfour">t</p>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement