Feature Demo – Variation #1
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 50%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }
Feature Demo – Variation #2
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 20%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }
Feature Demo – Variation #3
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 95%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }
Feature Demo – Variation #4
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 85%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }
Feature Demo – Variation #5
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 90%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }
Feature Demo – Variation #6
@keyframes animateWidthProgress { 0% { width: 0px; } 100% { width: 85%; } } .animateWidthProgress { animation: animateWidthProgress ease 1s; animation-iteration-count: 1; }