Is there anyway to animate an ellipsis with CSS animations?

前端 未结 8 1059
情话喂你
情话喂你 2021-01-29 22:58

I\'m trying to have an ellipsis animate, and was wondering if it was possible with CSS animations...

So it might be like

Loading...
Loading..
Loading.
Lo         


        
8条回答
  •  余生分开走
    2021-01-29 23:25

    A late addition but I found a way to do this which supports centered text.

    :after {
        content: '\00a0\00a0\00a0';
        animation: progress-ellipsis 5s infinite;
    }
    
    @keyframes progress-ellipsis {
        0% {
            content: '\00a0\00a0\00a0';
        }
        30% {
            content: '.\00a0\00a0';
        }
        60% {
            content: '..\00a0';
        }
        90% {
            content: '...';
        }
    }
    

提交回复
热议问题