Advertisement
GIFCITY

rotate on hover

Jan 15th, 2024 (edited)
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <style>
  2. .rotate {
  3. overflow: hidden;
  4. }
  5.  
  6. .rotate img {
  7. transition: all 0.5s;
  8. box-sizing: border-box;
  9. max-width: 100%;
  10. }
  11.  
  12. .rotate:hover img {
  13. transform: scale(1.3) rotate(12deg);
  14. }
  15. </style>
  16.  
  17. <figure class="rotate">
  18. <img src="URL"/>
  19. </figure> <!---you can cut this part off if you have pro plus!--->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement