Monica视频监控处理程序
xc
2021-04-26 1c9890402c19d0c8e99d68766f3172df20373c42
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
 
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Jessibuca【回放】</title>
    <meta charset="utf-8"/>
    <link rel="stylesheet" href="../css/progressTime.css">
    <link rel="stylesheet" href="../css/history/historyStyle.css">
 
 
</head>
 
<body>
 
<div id="jessibucaContainerHistory"></div>
 
 
<script src="../js/renderer.js"></script>
<script src="../js/jquery.min.js"></script>
<script src="../js/jquery.progressTime.js"></script>
<script src="../js/history/historypler.js"></script>
 
 
<script>
    window.onkeydown = function () {
        h5lc.fullscreen = false
    };
 
    let historypler =new Historypler({
        elem:"jessibucaContainerHistory",
        ffurl:"../js/jessibuca/ff.js",
    });
 
    //播放
    $(".progressTime-left-b-start").on("click", function () {
        //TODO:historypler.playVideo();
    });
    //暂停 关闭流
    $(".progressTime-left-b-start stop").on("click", function () {
        $(this).removeClass("stop");
        //TODO:historypler.closeVideo()
    });
</script>
 
</body>
 
</html>