jeandremelaria
11/6/2017 - 2:56 PM

CSS - transitions

#box1{
		width:100px;
		height:100px;
		background:#000;
		transition: width 10s, height 10s;
		transition-delay:1s;
		transition-timing-function: linear;
	}
	
	#box1:hover{
		width:500px;
		height: 500px;
	}