Thanks for taking out the time to look into this and any help in this regard is appreciated.
I have the following piece of code.
.middle_n.expand.remove
{
animation: contractm 0.3s forwards;
transform-origin: 0 75px;
height:200%;
animation-delay: 1.3s;
}
@keyframes contractm
{
0%{}
100%{transform:translate(147.8%,100%) rotate(-16.75deg);}
}
I wish to pass a dynamic value to rotate in contractm through javascript. How do I do that. Can multi step animation run through javascript?
Thanks again.