السبت 12 ديسمبر 2020 - 7:58
















var myVideo = document.getElementById("video1");

function playPause() {
if (myVideo.paused)
myVideo.play();
else
myVideo.pause();
}

function makeBig() {
myVideo.width = 560;
}

function makeSmall() {
myVideo.width = 320;
}

function makeNormal() {
myVideo.width = 420;
}


Video courtesy of Big Buck Bunny.













Note: The autoplay attribute does not work on some mobile devices.