如何动画加上一个像这个网站的div ...我只是复制并粘贴css但没有任何事情发生。
请帮我做这样的事情
我的代码类似于googleplus{position:absolute;top:100px;right:310px;background:#F3EBDB;border:1px solid #C3B8A3;padding:14px 6px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;animation:googleplus 2s infinite;-moz-animation:googleplus 2s infinite;-webkit-animation:googleplus 2s infinite;font-family:BKoodakBold !important}
答案 0 :(得分:2)
这是用CSS3动画制作的。您指定动画的名称,然后使用@keyframes
属性对其进行描述。有关详细信息,请参阅here,here is working example。