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