Advertisement
vvcx

Untitled

May 30th, 2021
581
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <style>
  2. .zoom {
  3. padding: 50px;
  4. transition: transform .2s; /* Animation */
  5. width: 200px;
  6. height: 200px;
  7. margin: 0 auto;
  8. }
  9.  
  10. .zoom:hover {
  11. transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  12. }
  13. </style>
  14.  
  15. <div class="zoom">
  16. <div id="img"><img src="https://media.tenor.com/images/eff22afc2220e9df92a7aa2f53948f9f/tenor.gif"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement