针对 CSS 字体属性执行动画


要使用 CSS 对 font  属性执行动画操作,您可尝试运行以下代码

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            border: 2px solid black;
            width: 400px;
            height: 100px;
            animation: myanim 5s infinite;
         }
         @keyframes myanim {
            70% {
               font: 35px arial, sans-serif;
            }
         }
      </style>
   </head>
   <body>
      <p>This is demo text</p>
   </body>
</html>

更新于: 25-Jun-2020

142 浏览

开启你的 职业生涯

通过完成课程获得认证

开始
广告