14 lines
294 B
JavaScript
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"});
|
|
});
|
|
|
|
|
|
}); |