Jump to content
  • 0

Остановка видео по клику


T@NKIST
 Share

Question

У меня есть видео с ютуба

Например:

<iframe width="640" height="360" src="http://www.youtube.com/embed/s0uNBpC-0Zo?feature=player_embedded" frameborder="0" allowfullscreen></iframe>

Как при событии остановить играющее видео?

P.S Сделал проигрыватель типа как ВКонтакте, но при нажатии "Закрыть" видео с экрана уходит но оно продолжает играть

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

у нового проигрывателя API не работает с ие6-7 и еще в стадии разработки(http://code.google.com/intl/ru-RU/apis/youtube/iframe_api_reference.html), а у старого все так коряво сделанно(http://code.google.com/intl/ru-RU/apis/youtube/js_api_reference.html) :(

Поэтому я иногда вставляю видео с ютуба с помощью плеера JW Player (http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/15994/playing-a-youtube-video)

самый простой вариант в твоем случае:

<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>video refresh</title>
</head>
<body>
<iframe id="player" width="640" height="360" src="http://www.youtube.com/embed/s0uNBpC-0Zo?feature=player_embedded" frameborder="0" allowfullscreen></iframe>
<br>
<input id="btnRefresh" type="button" value="refresh">

<script>
var btnRefresh = document.getElementById('btnRefresh');
var player = document.getElementById('player');

btnRefresh.onclick = function() {
player.src = player.src
}
</script>
</body>
</html>

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
Answer this question...

×   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