SMIL in Parallel

<par> 元素中的对象将同时显示(并行地)。

并行元素 <par>

<par> 元素拥有许多属性。最常用的属性有:

属性 描述
begin time 设置元素显示之前的延迟。
dur time 设置显示的持续时间。
endsync "first"|"last"|id(clip) 同步元素的停止。
repeatCount number 设置显示的重复次数。

如需完整的 SMIL 元素和属性列表,请访问 SMIL 参考手册

同步(Synchronization )

通过在 <par> 标签中使用 endsync 属性,片段的并行组能够在同时停止。

endsync="first" 会在最短的片段结束时停止所有 <par> 组中的片段,无论其它片段的时间参数被如何设置。

endsync="last" 会在所有片段均结束播放时终止 <par> 组。这是默认的。

endsync="id(ID)" 会在被标示 (ID) 的片段结束时终止 <par> 组。该 ID 将引用该片段的 id 属性的值。

实例:同时显示

  1. <html xmlns:t="urn:schemas-microsoft-com:time">
  2. <head>
  3. <?import namespace="t" implementation="#default#time2">
  4. <style>.t {behavior: url(#default#time2)}</style>
  5. </head>
  6. <body>
  7.  
  8. <par>
  9.  
  10. <t:audio
  11. src="liar.wav"
  12. repeatCount="indefinite"
  13. type="wav" />
  14.  
  15. <t:seq repeatCount="indefinite">
  16. <h2 class="t" dur="1s">
  17. I will display for one second</h2>
  18. <h2 class="t" dur="2s">
  19. I will display for two seconds</h2>
  20. </t:seq>
  21.  
  22. </par>
  23.  
  24. </body>
  25. </html>