Home > Article > Web Front-end > Share an HTML+css image enlargement effect code
How to enlarge the picture, the editor will introduce an example below.
<!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>
The above is the detailed content of Share an HTML+css image enlargement effect code. For more information, please follow other related articles on the PHP Chinese website!