html5 - CSS Border-Radius Modulation -
i have searched online extensively, cannot find discussion.
is there way modulate border radius of object using css animation? looking kind of (either 1 of circles, not both):
does have general idea if possible? i'm not looking exact replication, simple implementation of border-radius effect. ideas.
this close can get:
http://codepen.io/anon/pen/bnbnpg?editors=010
@-webkit-keyframes mymove {   25%  {border-radius: 120px 100px 120px 110px;}   50% {border-radius: 100px 120px 110px 120px;}   75%  {border-radius: 120px 110px 120px 100px;}   100% {border-radius: 110px 120px 100px 120px;} }      
i try doing code pen add instead. added border spins 1000 degrees lol
div {     width: 100px;     height: 100px;     border-radius: 100%;     border-color: red;     border-style: solid;     position :relative;     -webkit-animation: mymove 5s infinite;     animation: mymove 5s infinite; }   @-webkit-keyframes mymove {   25% { -webkit-transform: rotate(10000deg); }   25%  {border-radius: 50px 100px 100px 100px;} }   it getting there.... https://jsfiddle.net/dirty_smith/avocyf33/9/ maybe can add this, wanna see work!
or maybe kind of take off of this? https://jsfiddle.net/dirty_smith/avocyf33/10/
and mistake made pretty cool although not answer question

Comments
Post a Comment