CSS3 transition 将固定尺寸(px)的宽度过渡成百分比宽度 Demo 页面

效果

代码

HTML结构

右击查看源代码

CSS代码

.div{
	width: 300px;
	height: 300px;
	background: red;
	-webkit-transition: all .5s ease-in;
	-moz-transition: all .5s ease-in;
	-ms-transition: all .5s ease-in;
	-o-transition: all .5s ease-in;
	transition: all .5s ease-in;
}
.div:hover{
	width: 500px;
	background: green;
}

JS代码


	
神说:有代码的文章要有一个 Demo,于是就有了 Demo。 包养本人>>