impressivewebs
4/8/2016 - 7:31 PM

SVG2CSS : output files

SVG2CSS : output files

<!-- Add Your HTML -->
<div class="ball"></div>
/* Add Your CSS */
.ball {
	left: 100px;
 	bottom: 100px;
	height: 200px;
  	width: 200px;
	background: white;
  	border-radius: 50%;
 	position: absolute;
	animation: dropball 2s infinite;
}