Advertisement
b7334957

CSS SHAKE

Mar 13th, 2020
368
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="UTF-8" />
  6.  
  7. <link rel="stylesheet" href="https://csshake.surge.sh/csshake.min.css"></link>
  8. <title>CSS SHAKE</title>
  9.  
  10. <style>
  11. body {
  12. margin: auto;
  13. width: 364px;
  14. }
  15.  
  16. div {
  17. float: left;
  18. margin: 1em;
  19. }
  20.  
  21. h1 {
  22. font-size: 4em;
  23. cursor: default;
  24. }
  25.  
  26. h2 {
  27. font-size: 3em;
  28. text-transform: uppercase;
  29. text-align: center;
  30. border-bottom: 2px solid #111;
  31. padding-bottom: 10px;
  32. }
  33. </style>
  34. </head>
  35.  
  36. <body>
  37. <h2>css shake</h2>
  38.  
  39. <div class="shake">
  40. <h1>🙉</h1></div>
  41.  
  42. <div class="shake-hard">
  43. <h1>🙉</h1></div>
  44.  
  45. <div class="shake-slow">
  46. <h1>🙉</h1></div>
  47.  
  48. <div class="shake-little">
  49. <h1>🙉</h1></div>
  50.  
  51. <div class="shake-horizontal">
  52. <h1>🙉</h1></div>
  53.  
  54. <div class="shake-vertical">
  55. <h1>🙉</h1></div>
  56.  
  57. <div class="shake-rotate">
  58. <h1>🙉</h1></div>
  59.  
  60. <div class="shake-opacity">
  61. <h1>🙉</h1></div>
  62.  
  63. <div class="shake-crazy">
  64. <h1>🙉</h1></div>
  65.  
  66. <div class="shake-chunk">
  67. <h1>🙉</h1></div>
  68.  
  69. <div class="shake-slow shake-constant">
  70. <h1>🙉</h1></div>
  71.  
  72. <div class="shake-slow shake-constant shake-constant--hover">
  73. <h1>🙉</h1></div>
  74.  
  75. <div class="shake-crazy shake-freeze">
  76. <h1>🙉</h1></div>
  77.  
  78. </body>
  79.  
  80. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement