Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

ดำเนินการแอนิเมชั่นบนคุณสมบัติฟอนต์ CSS


การใช้งานแอนิเมชั่นบน ฟอนต์ คุณสมบัติด้วย CSS คุณสามารถลองเรียกใช้โค้ดต่อไปนี้:

ตัวอย่าง

<!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>