Search
 
SCRIPT & CODE EXAMPLE
 

HTML

html video play pause

<!DOCTYPE html> 
<html> 
<body> 

<button onclick="playVid()" type="button">Play Video</button>
<button onclick="pauseVid()" type="button">Pause Video</button><br> 

<video id="myVideo" width="320" height="176">
  <source src="mov_bbb.mp4" type="video/mp4">
  <source src="mov_bbb.ogg" type="video/ogg">
  Your browser does not support HTML5 video.
</video>

<script> 
var vid = document.getElementById("myVideo"); 

function playVid() { 
  vid.play(); 
} 

function pauseVid() { 
  vid.pause(); 
} 
</script> 

<p>Video courtesy of <a href="https://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>.</p>

</body> 
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: how to get rid how white border on html page 
Html :: how to select all text when input box is clicked 
Html :: std map count vs find 
Html :: disable overscroll html 
Html :: phone icon html 
Html :: how to enable button after checked 
Html :: bootstrap modal popup backdrop false 
Html :: how to embed a website in another website 
Html :: pink floyd hey you 
Html :: html button send post request 
Html :: ion-item margin 
Html :: angular input onchange 
Html :: how to add google map in html 
Html :: html table colspan 
Html :: font awesome cdn css 
Html :: bootstrap card deck 
Html :: checkbox onchange vue 
Html :: how to hide image in html 
Html :: button float right 
Html :: html table two headers 
Html :: how to make body width be device width html 
Html :: route link prop vue 
Html :: font awesome 6 pro 
Html :: bulma css buttons 
Html :: how to make website 
Html :: bootstrap 4.5 max-height 
Html :: how to escape in html 
Html :: jquery demo 
Html :: capture webcam js 
Html :: html repeating video 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =