Hi, I am trying to achieve a "Pulse" effect on a circle, using only pure CSS3. Below I leave an example of what was expected. Is it possible?
Expected
Current
#circle {
width: 70px;
height: 70px;
background: green ;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
border-radius: 50px;
position: absolute;
}
#icono{
width: 42px;
height: 42px;
margin-top: 12px;
margin-left: 14.5px;
}
<div id="circle" class="button">
<img id="icono" src="https://d30y9cdsu7xlg0.cloudfront.net/png/10685-200.png">
</div>