Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- #zoom {
- display: inline-block;
- overflow: hidden;
- #zoom img {
- display: block;
- transition: transform .4s; /* smoother zoom */
- }
- #zoom:hover img {
- transform: scale(1.3);
- transform-origin: 50% 50%;
- }
- </style>
- <div id="zoom"><img src="URL"></div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement