Advertisement
Natsumeow

zoom blur rotate on hover

May 26th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <style>
  2. .pp {
  3. overflow: hidden;
  4. margin: auto;
  5. min-width: 90px;
  6. max-width: 90px;
  7. width: 100%;
  8. }
  9.  
  10. .pp img {
  11. transition: all 0.5s;
  12. box-sizing: border-box;
  13. max-width: 100%;
  14. }
  15.  
  16. .pp:hover img {
  17. transform: scale(1.3) rotate(12deg);
  18. webkit-filter: blur(2px); /* Chrome, Safari, Opera */
  19. filter: blur(2px);
  20. }
  21.  
  22. </style>
  23.  
  24. <figure class="pp">
  25. <img src="https://s11.gifyu.com/images/Previous_life2C_this_life.jpg"/>
  26. </figure>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement