Thuta Learning
ရှာဖွေရန်
AdvancedWeb Developmentbeginner

Video

စိတ်လျှော့ပါ။ ဒီခန်းကို စာအုပ်လိုမဟုတ်ဘဲ စကားပြောသလိုပဲ၊ နားလည်လွယ်အောင် ရှင်းပါမယ်။

<video> tag က page ထဲမှာ video player ထည့်ဖို့ပါ။ controls မထည့်ရင် user အတွက် play/pause controls မပေါ်ပါဘူး။

Performance အတွက် video ကိုလိုအပ်သလို compression လုပ်ပြီး poster image ထည့်ထားတာကောင်းပါတယ်။

html
<video width="640" controls poster="preview.jpg">
  <source src="movie.mp4" type="video/mp4">
  Your browser does not support the video tag.
</video>
You should see
Poster image ပါတဲ့ video player တစ်ခုပေါ်လာပါမယ်။
Video | Thuta Learning