CSS3鼠标滑过放大突出效果

li{
	    		-webkit-transform:scale(0.9);
	-moz-transform:scale(0.9);
	-o-transform:scale(0.9);
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	    	}

li:hover{
	    		-webkit-transform:scale(1.0);
	-webkit-box-shadow:0px 0px 30px #ccc;
	-moz-transform:scale(1.0);
	-moz-box-shadow:0px 0px 30px #ccc;	
	-o-transform:scale(1.0);
	-o-box-shadow:0px 0px 30px #ccc;	

鼠标未划过前
未点击
鼠标悬停在蓝色框上
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/weixin_43545329/article/details/84976742