图片鼠标经过时放大的CSS写法

<style>
.scaleImg:hover{
	z-index: 1;
	transform: scale(3, 3);
	transition: .3s transform;
}
</style>
<img class="scaleImg" style="max-width:300px;max-height:300px;" src="xxxxx.jpeg"/>