SMIL Sequence
- ပြီးခဲ့သော စာရင်း SMIL အချိန်
- နောက်လိုက် စာရင်း SMIL Parallel
序列元素
您可以使用
<seq> အရာတိုး သည် အရာတိုးများစွာ ပါဝင်သည်၊ အသုံးများဆုံး အချက်အလက်များမှာ:
အချက်အလက် | အတ္ထုပ္ပတ္တိ | ဖော်ပြ |
---|---|---|
begin | time | အရာတိုး ပြသမှု ဖြစ်ပျက်ခင် ချိန်လည်းကောင်း ချိန်ချိုးခင် ချိန်လည်းကောင်း သတ်မှတ်ပါ |
dur | time | ပြသမှု အကြာအား သတ်မှတ်ပါ |
repeatCount | number | ပြသမှု အပြည့်အဝေး ကို သတ်မှတ်ပါ |
ပုံစံ SMIL အရာတိုး နှင့် အခြား အချက်အလက်များ အပြည့်အစုံ ကို မေးမြန်းရန် လောက်ခဲ့ သော် သွားခရီးလမ်း CodeW3C.com SMIL ဝေါဟာရ ကိုက်ညာ。
အကျိုးသက်ရှိ အချက်အလက် ပြုပြီ
<html xmlns:t="urn:schemas-microsoft-com:time"> <head> <?import namespace="t" implementation="#default#time2"> <style>.t {behavior: url(#default#time2)}</style> </head> <body> <t:seq repeatCount="indefinite"> <img class="t" src="image1.jpg" dur="1s" /> <img class="t" src="image2.jpg" dur="1s" /> </t:seq> </body> </html>
အကျိုးသက်ရှိ အချက်အလက် ပြုပြီ
<html xmlns:t="urn:schemas-microsoft-com:time"> <head> <?import namespace="t" implementation="#default#time2"> <style>.t {behavior: url(#default#time2)}</style> </head> <body> <t:seq repeatCount="indefinite"> <h2 class="t" dur="1s"> ကျော်ကြာ ၁ စက္ကန့် ပြုပြီ</h2> <h2 class="t" dur="2s"> ကျော်ကြာ ၂ စက္ကန့် ပြုပြီ</h2> <h2 class="t" dur="3s"> ကျော်ကြာ ၃ စက္ကန့် ပြုပြီ</h2> </t:seq> </body> </html>
- ပြီးခဲ့သော စာရင်း SMIL အချိန်
- နောက်လိုက် စာရင်း SMIL Parallel