Files
2022-08-29 23:20:16 +02:00

14 lines
294 B
JavaScript

$(document).ready(function(event){
$("video.localVideo").on('loadstart',function (event){
$(this).parent().find(".poster").show();
});
$("video.localVideo").on('canplay',function (event){
$(this).parent().find(".poster").hide();
$(this).css({"visibility":"visible"});
});
});