neosanctuary

zoom rotation on hover

Jan 14th, 2022 (edited)
525
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.39 KB | None | 0 0
  1. <style>
  2. #container {
  3. display: inline-block;
  4. margin: 20px;
  5. overflow: visible;
  6. }
  7. #container img {
  8. width: 100px;
  9. display: block;
  10. transition: transform .4s;
  11. }
  12. #container:hover img {
  13. transform: scale(1.3) rotate(3deg);
  14. transform-origin: 50% 50%;
  15. }
  16. </style>
  17.  
  18. <div id="container">
  19. <div id="img"><img src="https://pbs.twimg.com/media/FDUL7OiaMAIlYdO?format=jpg&name=medium"></div>
  20. </div>
Add Comment
Please, Sign In to add comment