Jump to content

запуск видео Webm по кнопке


anutti
 Share

Recommended Posts

Добрый день! Подскажите как сделать запуск видео по отдельной кнопке ? Как и в этом примере (он для запуска и остановки звука) http://jsfiddle.net/248yc2jx/, мне нужно то же самое но для видео.

 

Спасибо.

Link to comment
Share on other sites

vid.run();

vid.pause();

не совсем поняла где это применить...

 

  <!DOCTYPE html> <html> <body> <button onclick="RunVideo()" id="playpause" type="button">Play</button><br><video muted id="myVideo" width="320" height="176" controls>  <source src="http://www.w3schools.com/tags/mov_bbb.mp4"type="video/mp4">  <source src="http://www.w3schools.com/tags/mov_bbb.ogg"type="video/ogg">  Your browser does not support HTML5 video.</video><script>var controls = {        video: $("#myVideo"),        playpause: $("#playpause")                     };function RunVideo() {                  var video = controls.video[0];                   controls.playpause.click(function(){        if (video.paused) {            video.play();            $(this).text("Pause");            } else {            video.pause();            $(this).text("Play");        }                        $(this).toggleClass("paused");     });};</script> </body> </html>
 
 
не работает (((
Edited by anutti
Link to comment
Share on other sites

Спасибо за помощь, еще один вопрос, у меня на страничке 3 видео, а эта кнопка срабатывает только на первом, хотя я ID по разному называю

Не знаю как сделать красивее код (пример для 2-х)... когда одно работает прекрасно а когда 3 только у последнего

 

<video muted id="myVideo1" width="320" height="176" controls>  <source src="http://www.w3schools.com/tags/mov_bbb.mp4" type="video/mp4">  <source src="http://www.w3schools.com/tags/mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video.</video><br><button id="play1">Play</button><video muted id="myVideo2" width="320" height="176" controls>  <source src="http://www.w3schools.com/tags/mov_bbb.mp4" type="video/mp4">  <source src="http://www.w3schools.com/tags/mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video.</video><br><button id="play2">Play</button>_______<script>var video = document.getElementById('myVideo1');var playbutton = document.getElementById("play1");playbutton.addEventListener("click", function (e) {  //  Toggle between play and pause based on the paused property  if (video.paused) {    video.play();  } else {    video.pause();  }}, false);video.addEventListener("play", function () {  playbutton.innerHTML = "Pause";}, false);video.addEventListener("pause", function () {  playbutton.innerHTML = "Play";}, false);</script><script>var video = document.getElementById('myVideo2');var playbutton = document.getElementById("play2");playbutton.addEventListener("click", function (e) {  //  Toggle between play and pause based on the paused property  if (video.paused) {    video.play();  } else {    video.pause();  }}, false);video.addEventListener("play", function () {  playbutton.innerHTML = "Pause";}, false);video.addEventListener("pause", function () {  playbutton.innerHTML = "Play";}, false);</script>
Edited by anutti
Link to comment
Share on other sites

Что-то не получилось... видимо у меня руки кривые ( Я сделала как вверху, только пару моментов поправила, вроди работает но по коду конечно ужасно у меня выглядит .

Все равно, Вам спасибо большое за помощь )

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy