針對 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 瀏覽

開啟你的 職業生涯

透過完成課程獲得認證

開始
廣告