css動畫實現鼠標通過,圖片放大效果

瀏覽器實現效果:

本身在瀏覽器實現時當鼠標移上圖片有放大效果
在這裏插入圖片描述css

代碼實現:

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>圖片放大案例</title>
	<style type="text/css">
		div{
			overflow: hidden;
			float: left;
			margin: 10px;
		}
		div img{
			width: 310px;
			height: 224px;
			transition: all .4s;
		}
		div img:hover{
			transform: scale(1.2);
		}
	</style>
</head>
<body>
	<div><a href="https://blog.csdn.net/zag666"><img src="http://www.china-train.net/content/images/temp/r_9.jpg" alt=""></a></div>
	<div><a href="https://blog.csdn.net/zag666"><img src="https://img-blog.csdnimg.cn/20190831145504204.jpg?x-oss-process=image/resize,m_fixed,h_224,w_310" alt=""></a></div>
	<div><a href="https://blog.csdn.net/zag666"><img src="https://img-blog.csdnimg.cn/20190831145504204.jpg?x-oss-process=image/resize,m_fixed,h_224,w_310" alt=""></a></div>
</body>
</html>