pause-before
优质
小牛编辑
129浏览
2023-12-01
描述 (Description)
pause-before属性定义要在元素内容之前插入的静默暂停的持续时间。
可能的值 (Possible Values)
time - 任何时间值(例如,300毫秒); 暂停将是指定的时间长度。
percentage - 暂停的长度由语速的值决定。 因此,如果语速为每秒两个字(每分钟120个字),则50%将产生250ms,如果每秒一个字(每分钟60个字)则为500ms。
DOM语法 (DOM Syntax)
object.style.pauseBefore = "300ms";
适用于 (Applies to)
所有HTML元素
例子 (Example)
这是一个例子 -
<style type = "text/css">
<!--
h2, h3, h4 {pause-before: 200%;}
ol li {pause-before: 1s;}
-->
</style>