Heim > Artikel > Web-Frontend > Teilen Sie einen HTML+CSS-Bildvergrößerungseffektcode
Wie vergrößere ich das Bild? Lassen Sie mich unten ein Beispiel vorstellen.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.php.cn/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style> * { margin:0px; padding:0px; } #pHead { display: block; height: 220px; overflow: hidden; width: 350px; } #pHead:hover img { transform: scale(1.3); transition: all 1s ease 0s; -webkit-transform: scale(1.3); -webkit-transform: all 1s ease 0s; } </style> </head> <body> <p id="pHead"> <img class="Tao"src="image/Thomson.jpeg" /> </p> </body> </html>
Das obige ist der detaillierte Inhalt vonTeilen Sie einen HTML+CSS-Bildvergrößerungseffektcode. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!