I have a very simple animation setup to show the loading of three points. I got a bunch of them from all sides and chose the simplest of them. The problem I am facing is that it starts at 0, as it was said. I need it to start from the end.
CSS
.loading { font-size: 30px; } .loading:after { overflow: hidden; display: inline-block; vertical-align: bottom; animation: ellipsis-dot 1s infinite; animation-fill-mode: fowards; content: "\2026"; width: 0em; } @keyframes ellipsis { to { width: 1.25em; } }
Here's the fiddle .
I have these readings in a table, of which 100 of them are shown together. That it all starts from completely empty. I need them to start at 3 points. Then go to 0, then do what it is doing right now.
Note: the duration of 9000 is actually 900. It slows down to emphasize the start of the animation after the script is run.
html css animation ellipsis
saGii
source share