![]() |
|
Fare üzerine gelince Büyüyen (Zoom in/Out) Resim CSS Kodu - Yazdırılabilir Versiyon +- Raşit Tunca Board (https://rashid-tunca.com) +-- Forum: GENEL KÜLTÜR (https://rashid-tunca.com/forumdisplay.php?fid=592) +--- Forum: GENEL KÜLTÜR BiLGiLERi MAiN (https://rashid-tunca.com/forumdisplay.php?fid=229) +---- Forum: Webmaster Bilgileri (https://rashid-tunca.com/forumdisplay.php?fid=232) +---- Konu: Fare üzerine gelince Büyüyen (Zoom in/Out) Resim CSS Kodu (/showthread.php?tid=4400) |
Fare üzerine gelince Büyüyen (Zoom in/Out) Resim CSS Kodu - Raşit Tunca - 11-25-2018 Fare üzerine gelince Büyüyen (Zoom in/Out) Resim CSS Kodu Fare üzerine gelince Büyüyen (Zoom in/Out) Resim CSS Kodu Kod: <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> |