“Video HTML 5” Kode Jawaban

video html

<video width="320" height="240" controls>
  <source src="your_video's_name.mp4" type="video/mp4">
  Error Message
</video>

<!-- i copied w3schools code lol-->
Abdullah Muhammed Cumhur

pemutar video HTML5

<video width="320" height="240" controls>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
Your browser does not support the video tag. <!-- Text to be shown incase browser doesnt support html5 -->
</video>
Orion

video html

<div id='home-video' class="dl-neon-vid"><center>
    <video playsinline loop muted autoplay width="100%">
                <source src="video-link"  />
            </video></center>
    </div>

  <!-- script to pause ALL VIDEOS ON THE HOME PAGE when out of viewport -->

<script>
    let options = {
        root: null,
        rootMargin:'0px',
        threshold:1.0
    };
    let callback = (entries, observer)=>{
        entries.forEach(entry => {
            if(entry.target.id == 'home-video')
            {
                if(entry.isIntersecting){
                    entry.target.play();
                }
                else{
                    entry.target.pause();
                }
            }
        });
    }
let observer = new IntersectionObserver(callback, options);
observer.observe(document.querySelector('#home-video'));

</script>
Xerothermic Xenomorph

Video HTML 5

<video width="480" height="320" controls>
	// all browsers support mp4
  <source src="your_video_file_name.mp4" type="video/mp4">
   // safari doesn't support ogg
  <source src="your_video_file_name.ogg" type="video/ogg">
Your browser does not support the video tag.
</video>
Winter Hope

Jawaban yang mirip dengan “Video HTML 5”

Pertanyaan yang mirip dengan “Video HTML 5”

Lebih banyak jawaban terkait untuk “Video HTML 5” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya