[    [    [    [    [    [    [    b l o g g i n   s p a c e    wiki   ]    ]    ]    ]    ]    ]    ]

Zoom

From blogginpedia
Revision as of 02:49, 8 March 2025 by Grug (talk | contribs) (Created page with "<style> .zoom { padding: 50px; background-color: green; transition: transform .2s; →‎Animation: width: 200px; height: 200px; margin: 0 auto; } .zoom:hover { transform: scale(1.5); →‎(150% zoom - Note: if the zoom is too large, it will go outside of the viewport): } </style> <div class="zoom"></div>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

<style> .zoom {

 padding: 50px;
 background-color: green;
 transition: transform .2s; /* Animation */
 width: 200px;
 height: 200px;
 margin: 0 auto;

}

.zoom:hover {

 transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */

} </style>