Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Der Titel des Dokuments</title> <style> * { box-sizing: border-box; } .myzoom { padding: 50px; background-color: #1c87c9; transition: transform .2s; width: 200px; height: 200px; margin: 0 auto; } .myzoom:hover, .myzoom:focus { -ms-transform: scale(1.5); /* IE */ -webkit-transform: scle(1.5); /* Safari */ transform: scale(1.5); } </style> </head> <body> <h2>Zoomeffekt bei Hover</h2> <p>Bewegen Sie den Mauszeiger über das Element, um die Wirkung zu sehen.</p> <div class="myzoom"></div> </body> </html>