110
procentric/application/wellcome.html
Executable file
110
procentric/application/wellcome.html
Executable file
@@ -0,0 +1,110 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="stylesheet" href="./css/owlcarousel/owl.carousel.min.css">
|
||||
<link rel="stylesheet" href="./css/owlcarousel/owl.theme.default.min.css">
|
||||
<link rel="stylesheet" href="hoteltv.ui_utils.css">
|
||||
<link rel="stylesheet" href="hoteltv.welcome.css">
|
||||
<title>CENTIRM LG-PROCENTRIC HOTEL SERVICE</title>
|
||||
</head>
|
||||
|
||||
|
||||
<body>
|
||||
<!-- Welcome Screen Layout -->
|
||||
<div class="welcome">
|
||||
<div class="frame">
|
||||
<div class="msgwin">
|
||||
<div id="hotellogo"></div>
|
||||
<div id="guestname"></div>
|
||||
<div id="welcomemsg"></div>
|
||||
</div>
|
||||
<div class="guide" id="langsel"></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="welcome">
|
||||
<div class="owl-carousel owl-theme" id="lst_langsel">
|
||||
<!-- <div class="item" id="wc_eit_langsel_kr" lang='kr' style="--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png)">한국어</div>
|
||||
<div class="item" id="wc_eit_langsel_en" lang='en' style="--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png)">ENGLISH</div>
|
||||
<div class="item" id="wc_eit_langsel_ch" lang='ch' style="--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png)">简体</div>
|
||||
<div class="item" id="wc_eit_langsel_tw" lang='tw' style="--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png)">繁體</div>
|
||||
<div class="item" id="wc_eit_langsel_jp" lang='jp' style="--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png)">日本語</div> -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Buttons Layout -->
|
||||
<div class="control">
|
||||
<div class="skip_video"></div>
|
||||
</div>
|
||||
|
||||
<!-- Error Frame Layout -->
|
||||
<div class="error">
|
||||
</div>
|
||||
|
||||
<!-- Busy Animation Area -->
|
||||
<div class="busy-frame">
|
||||
<div id="busy_animation">
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
<div></div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
|
||||
<!-- Standard & 3rd party Library -->
|
||||
<script src="./lib/jquery-3.6.0.min.js"></script>
|
||||
<script src="./lib/jquery.color-2.1.2.min.js"></script>
|
||||
<script src="./lib/xml2json.js"></script>
|
||||
<script src="./lib/spatial_navigation.js"></script>
|
||||
<script src="./lib/owl.carousel.js"></script>
|
||||
|
||||
<!-- LG HCAP Library -->
|
||||
<script src="./lib/hcap.js"></script>
|
||||
|
||||
<!-- CENTIRM HOTELTV Library -->
|
||||
<script src="./lib/hoteltv.js"></script>
|
||||
<script src="./lib/hoteltv.ui_utils.js"></script>
|
||||
<script src="./lib/hoteltv.ui_welcome.js"></script>
|
||||
<script src="./lib/hoteltv.hcap.js"></script>
|
||||
<script src="./lib/hoteltv.api.js"></script>
|
||||
|
||||
<script>
|
||||
window.addEventListener('cached', function() {
|
||||
|
||||
});
|
||||
|
||||
window.addEventListener('load', function() {
|
||||
console.log("loading");
|
||||
HotelTV.LoadWelCome();
|
||||
});
|
||||
|
||||
window.addEventListener('unload', function(event) {
|
||||
console.log("unloading");
|
||||
});
|
||||
|
||||
|
||||
document.addEventListener("keydown",
|
||||
function(e) {
|
||||
switch (e.keyCode) {
|
||||
case 602: // Portail
|
||||
window.location.replace('./index.html');
|
||||
break;
|
||||
default:
|
||||
console.log("Key Code:" + e.keyCode)
|
||||
break;
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user