i4way-dash/.svn/pristine/49/497e3d4b304950cced874f0cf7f...

57 lines
2.2 KiB
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%
String cntx = request.getContextPath();
%>
<!doctype html>
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!-- Meta, title, CSS, favicons, etc. -->
<meta charset="utf-8">
<!-- meta http-equiv="refresh" content="1; URL=http://localhost/I4WAY_DashBoard_V1/html/index4.html"-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Wallboard Test</title>
<link href="https://fonts.googleapis.com/css?family=Nanum+Gothic:800" rel="stylesheet">
<!-- Bootstrap -->
<link href="<%=cntx%>/vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Font Awesome -->
<link href="<%=cntx%>/vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<!-- NProgress -->
<link href="<%=cntx%>/vendors/nprogress/nprogress.css" rel="stylesheet">
<!-- bootstrap-daterangepicker -->
<link href="<%=cntx%>/vendors/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet">
<!-- Custom Theme Style -->
<link href="<%=cntx%>/css/custom.min.css" rel="stylesheet">
<style type="text/css">
video {
position: fixed; right: 0; bottom: 0;
min-width: 100%; min-height: 100%;
width: auto; height: auto; z-index: -100;
//background: url(polina.jpg) no-repeat;
background-size: cover;
}
</style>
<script>
$(window).load(function(){
var elem = document.getElementById("myvideo");
if (!elem.requestFullscreen) {
elem.requestFullscreen();
} else if (!elem.mozRequestFullScreen) {
elem.mozRequestFullScreen();
} else if (!elem.webkitRequestFullscreen) {
elem.webkitRequestFullscreen();
}
});
</script>
</head>
<body class="nav-md" style="background-color:#ccffff; width: 99.5%;height: 98vh;">
<video autoplay controls id="myvideo">
<source src="<%=cntx%>/mp4/We_Bare_Bears-1x01-Our_Stuff.mp4" type="video/mp4">
video 요소를 지원하지 않는 브라우저입니다. 동영상은 다운로드 후 볼 수 있습니다.
</video>
</body>
</html>