为 CSS text-decoration-color 属性添加动画


如果要使用 CSS 对 text-decoration 属性实现动画效果,请尝试运行以下代码 −

示例

实际演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         #demo {
            position: absolute;
            right: 0;
            width: 300px;
            height: 200px;
            background-color: blue;
            text-decoration: underline;
            animation: myanim 3s infinite;
         }
         @keyframes myanim {
            30% {
               right: 350px;
               text-decoration-color: orange;
            }
         }
      </style>
   </head>
   <body>
      <h1>CSS text-decoration-color property</h1>
      <div id = "demo">
         <h1>This is demo text.</h1>
      </div>
   </body>
</html>

更新日期:12-Jun-2020

174 次浏览

开启你的 职业生涯

完成课程后获得认证

开始
广告