CSS Animate内容

时间:2015-09-02 07:29:21

标签: css css-animations

如何使用CSS为文字制作动画?

我试图简单地每秒使用纯CSS更改字母,尽管我还没有完成CSS3动画的大量工作。以下是我迄今为止提出的建议:

a:link::after {animation: test 1s linear 1s infinite alternate;}

@keyframes test
{
0% {content: 'a';}
16% {content: 'b';}
32% {content: 'c';}
48% {content: 'd';}
64% {content: 'e';}
80% {content: 'f';}
}

由于我无法更改content属性,因此可以使用overflow将其删除,并以某种方式更改paddingwidth等维度...

没有JavaScript,绝对没有框架。

0 个答案:

没有答案