19 lines
475 B
JavaScript
19 lines
475 B
JavaScript
Highcharts.setOptions({
|
|
global : {
|
|
useUTC : false
|
|
}
|
|
});
|
|
|
|
$(document).ready(function(event){
|
|
$("video").on('loadstart',function (event){
|
|
var wid = $(this).innerWidth();
|
|
$(".videoContainerForImageAppend").append('<img src="images/loading.gif" class="poster" style="width:'+ wid +'px;background-color:black;"/>')
|
|
$(this).hide();
|
|
});
|
|
|
|
$("video").on('canplay',function (event){
|
|
$(".poster").hide();
|
|
$(this).show();
|
|
// $(this).get(0).play();
|
|
});
|
|
}); |