css3省略号小动画...

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

<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>

猜你喜欢

转载自my.oschina.net/u/879103/blog/1535213
今日推荐