首页  >  文章  >  web前端  >  CSS 暂停属性

CSS 暂停属性

WBOY
WBOY转载
2023-08-26 13:29:21839浏览

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删除