CSS - pause-before



描述

pause-before 属性定义在元素内容之前插入静默暂停的持续时间。

可能的值

  • 时间 − 任何时间值(例如,300ms);暂停时间将是指定的时间长度。

  • 百分比 − 暂停长度由 speech-rate 的值决定。因此,pause-before: 50% 如果语速为每秒两个单词(每分钟 120 个单词),则会产生 250ms,如果语速为每秒一个单词(每分钟 60 个单词),则会产生 500ms。

DOM 语法

object.style.pauseBefore = "300ms";

应用于

所有 HTML 元素

示例

这是一个示例:

<style type = "text/css">
   <!--
      h2, h3, h4 {pause-before: 200%;}
      ol li {pause-before: 1s;}
   -->
</style>
广告