首頁  >  文章  >  web前端  >  CSS 暫停屬性

CSS 暫停屬性

WBOY
WBOY轉載
2023-08-26 13:29:21801瀏覽

CSS 暂停属性

這個屬性是設定pause-before pause-after的縮寫。如果給定兩個值,則第一個值是pause-before,第二個值是pause-after。

範例

讓我們來看一個CSS中pause屬性的範例 −

<style>
   <!--
      /* pause-before: 20ms; pause-after: 20ms */
      h1 { pause : 20ms }

      /* pause-before: 30ms; pause-after: 40ms */
      h2{ pause : 30ms 40ms }

      /* pause-before: ?; pause-after: 10ms */
      h3 { pause-after : 10ms }
   -->
</style>

以上是CSS 暫停屬性的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除