jQuery(function ($) {
//For adding play pause layer on top on the player
$("#Layer").css({
position: "absolute",
top: $("#video").offset().top,
left: $("#video").offset().left,
width: $("#video").outerWidth(),
height: $("#video").outerHeight()
});
//Switching play/pause image on the player
$("#Layer").on("click", function (e) {
var myVideo = $("#video")[0];
if (myVideo.paused) {
myVideo.play();
$(this).addClass("pause");
} else {
myVideo.pause();
$(this).removeClass("pause");
}
});
//Toggle behaviour for play/pause
$("#video").on("click", function (e) {
var myVideo = $(this)[0];
if (myVideo.paused) {
myVideo.play();
} else {
myVideo.pause();
}
});
//Showing/Hiding layer on top of the player
$("#video").on("mouseenter", function (e) {
$("#Layer").toggle();
});
//Volume bar to control video volume
$("#volume-bar").on("change", function () {
var myVideo = $("#video")[0];
myVideo.volume = $(this).val();
if(myVideo.volume==0) {
$('.ab').css('display', 'none');
}else{ $('.ab').css('display', 'inline-block');}
});
//Seek bar to sync with the current playing video
$("#video").on("timeupdate", function () {
var myVideo = $(this)[0];
var value = (100 / myVideo.duration) * myVideo.currentTime;
$("#seek-bar").val(value);
});
//Seek bar drag to move the current playing video at the time.
$("#seek-bar").on("mouseup", function () {
var myVideo = $("#video")[0];
var currentTime = $("#seek-bar").val() / (100 / myVideo.duration);
myVideo.currentTime = currentTime;
});
$("#seek-bar").on("mousedown", function () {
var myVideo = $("#video")[0];
myVideo.pause();
});
});
Please Whitelist JSFiddle in your content blocker.
Help keep JSFiddle free for always by one of two ways:
Whitelist JSFiddle in your content blocker (two clicks)
Go PRO and get access to additional PRO features →
Join the 4+ million users, and keep the JSFiddle dream alive.
Ad-free
All ads in the editor and listing pages are turned completely off.
Use pre-released features
You get to try and use features (like the Palette Color Generator) months before everyone else.
Fiddle collections
Sort and categorize your Fiddles into multiple collections.
Private collections and fiddles
You can make as many Private Fiddles, and Private Collections as you wish!
Console
Debug your Fiddle with a minimal built-in JavaScript console.