css-animation-example
HTML
<div class="shape">
</div>
CSS
.shape{width:200px;height:200px; background:#ff5722;animation:shapes 2s 5; margin:50px auto;}
@keyframes shapes{0%{border-radius:0%}10%{border-top-right-radius:50%}20%{border-top-left-radius:50%}30%{border-bottom-right-radius:20%}40%{border-bottom-left-radius:40%}60%{border-bottom-right-radius:70%}100%{border-radius:50%} alternate}