Last active
October 16, 2017 21:31
-
-
Save serkanalgur/e73ea80437399341d167ac6d98455ca5 to your computer and use it in GitHub Desktop.
Video Etiket Örneği
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<-- HTML --> | |
<figure> | |
<video src="_assets/video/sample.webm" controls autoplay | |
width="400" | |
height="300" | |
id="video-ornek" | |
data-description="web video örneği"> | |
tarayıcınız video etiketini desteklememekte </video> | |
<legend></legend> | |
</figure> | |
//JavaScript bölümü | |
<script type="text/javascript"> | |
var video = document.getElementById("video-ornek"), | |
toggle = document.getElementById("video-toggle"); | |
toggle.onclick = function() { | |
if (video.paused) { | |
video.play(); | |
toggle.className="playing" | |
} else { | |
video.pause(); | |
toggle.className="paused" | |
} | |
}; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment