videoMonitor.html 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="maximum-scale=1.0,minimum-scale=1.0,user-scalable=0,width=device-width,initial-scale=1.0"/>
  6. <meta name="format-detection" content="telephone=no,email=no,date=no,address=no">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <link rel="stylesheet" href="../../css/api.css">
  9. <!--<link rel="stylesheet" href="../../css/aui.css">-->
  10. <link rel="stylesheet" href="../../css/projeck.css">
  11. <title></title>
  12. <style>
  13. .aui-searchbar{
  14. width: 86%;
  15. height: 50px;
  16. margin-left: 40px;
  17. background-color: transparent;
  18. }
  19. .aui-searchbar .aui-searchbar-btn{
  20. color: #fff;
  21. }
  22. #search-input::placeholder{
  23. color: #fff;
  24. }
  25. .search_ico{
  26. width: 16px;
  27. height: 16px;
  28. display: block;
  29. position: absolute;
  30. background: url("../../image/seacrh001.png") no-repeat;
  31. background-size: cover;
  32. top: 7px;
  33. left: 17px;
  34. }
  35. .backBtn{
  36. margin-left: 5px;
  37. }
  38. .aui-searchbar-btn{
  39. font-size: 14px!important;
  40. }
  41. #search-input{
  42. font-size: 14px;
  43. }
  44. </style>
  45. </head>
  46. <body>
  47. <div class="api_layout">
  48. <header class="header-login">
  49. <img class="backBtn" src="../../image/btn_back.png" alt="" onclick="backIndex()">
  50. <p class="api_text">视频监控</p>
  51. </header>
  52. </div>
  53. <script src="../../script/api.js"></script>
  54. <script src="../../script/fastclick.min.js"></script>
  55. <script src="../../script/config.js"></script>
  56. <script>
  57. apiready = function(){
  58. $api.fixStatusBar( $api.dom('header'));
  59. openFrameFun();
  60. // fnInitUIInput();
  61. };
  62. function openFrameFun() {
  63. api.openFrame({
  64. name: 'monitorList',
  65. url: 'monitorList.html',
  66. rect: {
  67. x: 0,
  68. y: $api.dom('header').offsetHeight,
  69. w: 'auto',
  70. h: 'auto'
  71. },
  72. pageParam: {
  73. name: 'test'
  74. },
  75. bounces: false,
  76. bgColor: 'rgba(0,0,0,0)',
  77. vScrollBarEnabled: true,
  78. hScrollBarEnabled: false,
  79. scrollEnabled:false,
  80. });
  81. };
  82. function backIndex() {
  83. api.closeWin();
  84. }
  85. </script>
  86. </body>
  87. </html>