在 CSS 字体大小属性上执行动画


要使用 CSS 在字体大小属性上实现动画,你可以尝试运行以下代码

示例

现场演示

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

更新于:2020 年 6 月 25 日

832 次观看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.