How to Reset video using html5

user3754764

I'm kind of new with programming in web and I'm trying to figure out how to reset the video after playing it for the first time. My code is:

var video = document.getElementById('home_video');
    video.addEventListener('click',function(){
    video.play();
},false);

Thank you!

M O H

I believe you can use something like this:

var video = document.getElementById('home_video');
    video.addEventListener('click',function(){
    video.currentTime = 0
    video.play();
    },false);

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to Embed Video using HTML5 with local file

분류에서Dev

How to set HTML5 video subtitle directly by text?

분류에서Dev

Find out if Video.JS is using HTML5 or the Flash Player

분류에서Dev

HTML5 video: stalled event

분류에서Dev

Creating a section with video as background HTML5

분류에서Dev

How to reset the CSS of HTML Elements?

분류에서Dev

How to navigate internally within same Page using links in HTML5, JQuery mobile..?

분류에서Dev

how can i lowercase object value/data in javascript using underscore for HTML5 document

분류에서Dev

How to reset password on rails api? [Not using devise]

분류에서Dev

How to reset a css animation class using jquery?

분류에서Dev

how do I reset netmon using powershell?

분류에서Dev

HTML5 Video Tag Not Displayed In Compatible Browser

분류에서Dev

Prevent HTML5 Video from disabling screen saver

분류에서Dev

Pause html5 video when user switches tab

분류에서Dev

html5 video safari downloads full before playing

분류에서Dev

AngularJS ngInclude Html5 Video doesn't get replaced

분류에서Dev

How to reset a button/label in Xcode 5

분류에서Dev

how can I redraw a circle on an HTML5 canvas in this specific case? (method call versus directly using context object)

분류에서Dev

How to detect object from video using SVM

분류에서Dev

How to conditionally blur video using FFMPG

분류에서Dev

how to play video using terminal on ubuntu server

분류에서Dev

jQuery - How I can reset the html() of this button?

분류에서Dev

how to manage ajax code to display image and video using switch case on HTML

분류에서Dev

How to reset the scrollHeight values on DOM elements retrieved using ClientFunction

분류에서Dev

How to "reset" or "clear" System.in using java application?

분류에서Dev

Save snapshot from HTML5 webcam using PHP

분류에서Dev

'ckeditor4-react'및 'HTML5 video'플러그인

분류에서Dev

Html5 video.currentTime이 플레이어를 멈춤

분류에서Dev

Jquery (Html5 video element)를 사용하여 동영상 재개

Related 관련 기사

  1. 1

    How to Embed Video using HTML5 with local file

  2. 2

    How to set HTML5 video subtitle directly by text?

  3. 3

    Find out if Video.JS is using HTML5 or the Flash Player

  4. 4

    HTML5 video: stalled event

  5. 5

    Creating a section with video as background HTML5

  6. 6

    How to reset the CSS of HTML Elements?

  7. 7

    How to navigate internally within same Page using links in HTML5, JQuery mobile..?

  8. 8

    how can i lowercase object value/data in javascript using underscore for HTML5 document

  9. 9

    How to reset password on rails api? [Not using devise]

  10. 10

    How to reset a css animation class using jquery?

  11. 11

    how do I reset netmon using powershell?

  12. 12

    HTML5 Video Tag Not Displayed In Compatible Browser

  13. 13

    Prevent HTML5 Video from disabling screen saver

  14. 14

    Pause html5 video when user switches tab

  15. 15

    html5 video safari downloads full before playing

  16. 16

    AngularJS ngInclude Html5 Video doesn't get replaced

  17. 17

    How to reset a button/label in Xcode 5

  18. 18

    how can I redraw a circle on an HTML5 canvas in this specific case? (method call versus directly using context object)

  19. 19

    How to detect object from video using SVM

  20. 20

    How to conditionally blur video using FFMPG

  21. 21

    how to play video using terminal on ubuntu server

  22. 22

    jQuery - How I can reset the html() of this button?

  23. 23

    how to manage ajax code to display image and video using switch case on HTML

  24. 24

    How to reset the scrollHeight values on DOM elements retrieved using ClientFunction

  25. 25

    How to "reset" or "clear" System.in using java application?

  26. 26

    Save snapshot from HTML5 webcam using PHP

  27. 27

    'ckeditor4-react'및 'HTML5 video'플러그인

  28. 28

    Html5 video.currentTime이 플레이어를 멈춤

  29. 29

    Jquery (Html5 video element)를 사용하여 동영상 재개

뜨겁다태그

보관