Maison >interface Web >tutoriel HTML >Partager un code d'effet d'agrandissement d'image HTML + CSS
Comment agrandir l'image ? Laissez-moi vous présenter un exemple ci-dessous.
<!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>
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!