css3省略号小动画...

 

利用伪元素 :after 的content属性配合css3作省略号加载小动画。css

<span class="coming">敬请期待</span>

<style>

    .coming:after{content: "";-webkit-animation:dotAnimate 1s infinite;}

    @-webkit-keyframes dotAnimate{
        0%,100%{content: "";}
        25%{content: ".";}
        50%{content: "..";}
        75%{content: "...";}
    }

</style>
相关文章
相关标签/搜索