赣州市洪水风险预警系统二维版本
xiebin
2023-03-02 b39483c96ae572121d3c619c0b9d37634e682cc4
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
<!DOCTYPE html>
<html lang="zh-CN">
 
    <head>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
        <meta name="renderer" content="webkit">
        <title>视频监控</title>
        <link rel="stylesheet" href="css/reset.css">
          <link rel="stylesheet" href="css/index.css">
          <style>
              .video_box, #vmyPlayer1, video{width:100%; height:100%;}
          </style>
    </head>
    <body>
        <div class="video-pup"></div>
    </body>
    <script type="text/javascript" src="js/jquery-3.2.1.js"></script>
    <script type="text/javascript" src="js/ezuikit.js"></script>
    <script type="text/javascript" src="js/layui/layui.js"></script>
    <script>
        $(function(){
            var pathUrl = (window.location.href).split('?')[1];
                strId = (pathUrl.split('=')[1]).split("&")[0]; 
                var source = '<source src="rtmp://rtmp.open.ys7.com/openlive/'+source+'" type="rtmp/flv" />';
                var Str1 = '<div class="video_box" id="vvideobox1'+'">'+
                        '<video id="vmyPlayer1'+'" width="700" height="500" poster="http://open.ys7.com/asdf.jpg" controls playsInline webkit-playsinline autoplay>'+source+'</video>'+
                        '</div>';
            $(".video-pup").html(Str1);
            var player = new EZUIPlayer("vmyPlayer1");
        });
    </script>
</html>