Dot dotdot dotdotdot as loading?

前端 未结 8 2162
借酒劲吻你
借酒劲吻你 2021-01-31 07:43

I wanna create some loading dots, like this:

At 0000 miliseconds the span content is: .

At 0100 miliseconds the span content is: ..

8条回答
  •  走了就别回头了
    2021-01-31 08:10

    Example: https://codepen.io/lukaszkups/pen/NQjeVN

    You can animate css content too!

    // HTML
    

    Loading

    // CSS (nested SASS) p span &:before animation: dots 2s linear infinite content: '' @keyframes dots 0%, 20% content: '.' 40% content: '..' 60% content: '...' 90%, 100% content: ''

提交回复
热议问题