issue #11 #12 임피리얼 펠리스와 광화문을 같이 지원하기 위하여 theme스킴 적용.

This commit is contained in:
Paul Kim
2024-02-15 14:17:07 +09:00
parent d7f61a3691
commit 81c608456e
570 changed files with 8997 additions and 66 deletions

View File

@@ -3,28 +3,12 @@
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="hoteltv.ui_utils.css">
<link rel="stylesheet" href="hoteltv.error.css">
<link rel="stylesheet" href="hoteltv.app.full.css">
<link rel="stylesheet" href="hoteltv.app.full.mm.css">
<link rel="stylesheet" href="hoteltv.app.full.mm.weather.css">
<link rel="stylesheet" href="hoteltv.app.full.mm.flight.css">
<link rel="stylesheet" href="hoteltv.app.full.widjet.css">
<link rel="stylesheet" href="hoteltv.app.full.sm.css">
<link rel="stylesheet" href="hoteltv.app.full.mypage.css">
<link rel="stylesheet" href="hoteltv.app.full.ctzgen.css">
<link rel="stylesheet" href="hoteltv.app.full.tv.css">
<link rel="stylesheet" href="hoteltv.app.full.guide.css">
<link rel="stylesheet" href="hoteltv.app.full.news.css">
<link rel="stylesheet" href="hoteltv.app.full.popup.css">
<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="./css/acmeticker/style.css">
<link rel="stylesheet" href="./css/lightslider.css">
<link rel="stylesheet" href="/procentric/application/theme/hoteltv.ui_utils.css">
<link rel="stylesheet" href="/procentric/application/theme/hoteltv.error.css">
<link rel="stylesheet" href="/procentric/application/css/owlcarousel/owl.carousel.min.css">
<link rel="stylesheet" href="/procentric/application/css/owlcarousel/owl.theme.default.min.css">
<link rel="stylesheet" href="/procentric/application/css/acmeticker/style.css">
<link rel="stylesheet" href="/procentric/application/css/lightslider.css">
<title>CENTIRM LG-PROCENTRIC HOTEL SERVICE</title>
</head>
@@ -429,28 +413,28 @@
<!-- 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/jquery.webticker.min.js"></script>
<script src="./lib/xml2json.js"></script>
<script src="./lib/owl.carousel.js"></script>
<script src="./lib/lightslider.js"></script>
<script src="/procentric/application/lib/jquery-3.6.0.min.js"></script>
<script src="/procentric/application/lib/jquery.color-2.1.2.min.js"></script>
<script src="/procentric/application/lib/jquery.webticker.min.js"></script>
<script src="/procentric/application/lib/xml2json.js"></script>
<script src="/procentric/application/lib/owl.carousel.js"></script>
<script src="/procentric/application/lib/lightslider.js"></script>
<!-- LG HCAP Library -->
<script src="./lib/hcap.js"></script>
<script src="/procentric/application/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_appfull.js"></script>
<script src="./lib/hoteltv.hcap.js"></script>
<script src="./lib/hoteltv.api.js"></script>
<script src="/procentric/application/lib/hoteltv.js"></script>
<script src="/procentric/application/lib/hoteltv.ui_utils.js"></script>
<script src="/procentric/application/lib/hoteltv.ui_appfull.js"></script>
<script src="/procentric/application/lib/hoteltv.hcap.js"></script>
<script src="/procentric/application/lib/hoteltv.api.js"></script>
<!-- MQTT Library -->
<script src="./lib/mqtt.min.js"></script>
<script src="/procentric/application/lib/mqtt.min.js"></script>
<!-- ACMETICKER Library -->
<script src="./lib/acmeticker.js"></script>
<script src="/procentric/application/lib/acmeticker.js"></script>
<script>
@@ -459,6 +443,24 @@
});
window.addEventListener('load', function() {
HotelTV.state = JSON.parse(sessionStorage.getItem("state"));
let needed_css_files = ["/hoteltv.app.full.css",
"/hoteltv.app.full.mm.css",
"/hoteltv.app.full.mm.weather.css",
"/hoteltv.app.full.mm.flight.css",
"/hoteltv.app.full.widjet.css",
"/hoteltv.app.full.sm.css",
"/hoteltv.app.full.mypage.css",
"/hoteltv.app.full.ctzgen.css",
"/hoteltv.app.full.tv.css",
"/hoteltv.app.full.guide.css",
"/hoteltv.app.full.news.css",
"/hoteltv.app.full.popup.css"];
for ( let _idx=0; _idx<needed_css_files.length; _idx++ )
{
$('head:first').append('<link rel="stylesheet" type="text/css" href="/procentric/application/theme/'
+ HotelTV.state['theme_root'] + needed_css_files[_idx] + '" />');
}
console.log("Documents loaded...")
});
@@ -492,7 +494,8 @@
//console.log(`KEY::${e.keyCode}`);
break;
}
});
}
);
$(document).ready(function() {
HotelTV.LoadAppFull();

View File

@@ -5,7 +5,6 @@
<meta charset="utf-8">
<link rel="stylesheet" href="hoteltv.ui_utils.css">
<link rel="stylesheet" href="hoteltv.error.css">
<link rel="stylesheet" href="hoteltv.welcome.css">
<title>CENTIRM LG-PROCENTRIC HOTEL SERVICE</title>
</head>

View File

@@ -65,6 +65,7 @@ var HotelTV = HotelTV || {
'weather_reflash': false,
'widget_reflash': false
},
'theme_root': null,
'token': null
},
'carts': {
@@ -317,6 +318,12 @@ HotelTV.Init = async function() {
}
});
}
// state[theme_root] 정의
// For Reference:
// 조선 : HJS00001
// 인스파이어 : HIN00001
// 임페리얼 : HIM00001
HotelTV.state['theme_root'] = HotelTV.hotelinfo.siteCode;
try {
HotelTV.guestinfo = await HotelTV.api.GetGuestInfo();
@@ -484,7 +491,7 @@ HotelTV.LoadWelCome = async function() {
HotelTV.devinfo = await JSON.parse(sessionStorage.getItem("devinfo"));
HotelTV.svrinfo = await JSON.parse(sessionStorage.getItem("svrinfo"));
HotelTV.state = await JSON.parse(sessionStorage.getItem("state"));
//HotelTV.state = await JSON.parse(sessionStorage.getItem("state"));
//STEP#03:API Module INIT
await HotelTV.api.Init(HotelTV.svrinfo.ipaddr, HotelTV.svrinfo.port, HotelTV.devinfo.model_name.substring(2, HotelTV.devinfo.model_name.length - 1), HotelTV.devinfo.serial_number);
HotelTV.settings = await JSON.parse(sessionStorage.getItem("settings"));
@@ -618,7 +625,7 @@ HotelTV.LoadAppFull = async function() {
HotelTV.devinfo = await JSON.parse(sessionStorage.getItem("devinfo"));
HotelTV.svrinfo = await JSON.parse(sessionStorage.getItem("svrinfo"));
HotelTV.services = await JSON.parse(sessionStorage.getItem("services"));
HotelTV.state = await JSON.parse(sessionStorage.getItem("state"));
//HotelTV.state = await JSON.parse(sessionStorage.getItem("state"));
//STEP#02: Init HotelTV API
await HotelTV.api.Init(HotelTV.svrinfo.ipaddr, HotelTV.svrinfo.port, HotelTV.devinfo.model_name.substring(2, HotelTV.devinfo.model_name.length - 1), HotelTV.devinfo.serial_number);

View File

@@ -191,7 +191,7 @@ HotelTV.ui_welcome = (function() {
}
if (sz_msg[_state.lang] != null) {
_elmnt_welcomemsg.html(sz_msg[_state.lang] + '<br />');
_elmnt_welcomemsg.html(sz_msg[_state.lang].replace(/(?:\r\n|\r|\n)/g, '<br>'));
} else {
_elmnt_welcomemsg.html('<br />');
}
@@ -222,7 +222,7 @@ HotelTV.ui_welcome = (function() {
_div_lang_btn.id = 'wc_eit_langsel_' + __lang;
_div_lang_btn.textContent = _SupportedLang[__lang].name;
_div_lang_btn.setAttribute("lang", __lang);
_sz_styleOpt = "--btn_focus:url(./images/bt_language_tab_focus.png); --btn_unfocus:url(./images/bt_language_tab_unfocus.png);";
_sz_styleOpt = "--btn_focus:url(images/bt_language_tab_focus.png); --btn_unfocus:url(images/bt_language_tab_unfocus.png);";
_div_lang_btn.setAttribute("style", _sz_styleOpt);
_div_langsel.appendChild(_div_lang_btn);
}

View File

@@ -0,0 +1,291 @@
.main .ctzgen {
position: absolute;
top: 2160px;
left: 0px;
width: 1920px;
height: 1080px;
background-image: url(tv:);
display: none;
}
.main .ctzgen .bg {
position: absolute;
top: 0px;
left: 0%;
width: 1920px;
height: 1080px;
padding: 0px;
overflow: hidden;
display: none;
}
.main .ctzgen .bg .owl-dots {
position: absolute;
top: 980px;
width: 100%;
align-content: center;
}
/* .main .ctzgen .bg .owl-dots .owl-dot span {
width: 20px;
height: 20px;
} */
.main .ctzgen .bg div#lst_ctzgenbg {
position: absolute;
width: 1920px;
height: 1080px;
margin: 0;
padding: 0;
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer {
width: 1920px;
height: 1080px;
margin: 0;
padding: 0;
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer .owl-stage {
width: 1920px;
height: 1080px;
margin: 0;
padding: 0;
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer .owl-stage .owl-item {
width: 1920px;
height: 1080px;
margin: 0;
padding: 0;
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer .owl-stage .owl-item>div {
width: 1920px;
height: 1080px;
background-image: var(--bg_noplay);
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer .owl-stage .owl-item.movieplay>div {
width: 1920px;
height: 1080px;
background-image: url(tv:);
}
.main .ctzgen .bg .owl-carousel .owl-stage-outer .owl-stage .owl-item.movieplay .item .ctz_desc_frame {
opacity: 1;
animation-delay: 6s;
animation-name: fadeOutCtzDescFrame;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-fill-mode: forwards;
animation-duration: 2s;
}
@keyframes fadeOutCtzDescFrame {
0% {
opacity: 1;
}
100% {
opacity: 0;
}
}
/* OWL Contents Menu Selector Container */
.main .ctzgen .slider .owl-carousel .owl-item.active.focus div [id*="ctzgen_item_icon"] {
background-image: var(--icon_focus);
}
.main .ctzgen .slider .owl-carousel .owl-item.active[class*="unfocus"] div [id*="ctzgen_item_icon"] {
background-image: var(--icon_unfocus);
}
.main .ctzgen .slider .owl-carousel .owl-item.active.focus div [id*="ctzgen_item_title"] {
transform: scale(1.2);
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_desc_frame {
position: absolute;
top: 130px;
left: 1280px;
width: 620px;
height: 830px;
color: rgb(255, 255, 255);
background-color: rgba(50,40,26, 0.7);
padding: 0px 12px 0px 12px;
overflow: hidden;
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_desc_frame #ctz_title {
position: absolute;
display: flex;
font-size: 44px;
/* line-height: 44px; */
line-height: 1;
height: 115px;
width: 100%;
padding: 10px;
white-space: pre-wrap;
overflow: hidden;
text-overflow: ellipsis;
/* justify-content: center; */
align-items: center;
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_desc_frame #ctz_thumbnail {
margin: 120px 10px 40px 10px;
height: 220px;
/* filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1)); */
/* border: 4px solid rgb(255, 255, 255); */
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_desc_frame #ctz_thumbnail img {
width: auto;
height: 212px;
overflow: hidden;
/* border: 2px solid rgb(40, 40, 40); */
border: 2px solid rgb(160, 160, 160);
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_desc_frame #ctz_description {
position: absolute;
font-size: 26px;
width: 93%;
line-height: 1.2;
margin: 0 10px 0 10px;
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_imgvwr_frame {
position: absolute;
top: 130px;
width: 1920px;
height: 830px;
color: rgb(255, 255, 255);
background-color: rgba(0, 0, 0, 0.5);
padding: 0px 12px 0px 12px;
overflow: hidden;
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_mv_ctrl {
position: absolute;
top: 970px;
left: 1700px;
height: 54px;
line-height: 54px;
color: rgb(235, 235, 235);
font-size: 38px;
filter: drop-shadow(0 0 5px rgb(0, 0, 0));
white-space: nowrap;
}
.main .ctzgen .bg .owl-carousel .owl-item.movieplay .item .ctz_mv_ctrl {
animation-delay: 4s;
animation-name: moveCtzMvCtrl;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-fill-mode: forwards;
animation-duration: 1s;
}
@keyframes moveCtzMvCtrl {
from {
left: 1700px;
}
to {
left: 2220px
}
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_mv_ctrl::before {
position: absolute;
content: '';
width: 128px;
height: 54px;
margin-left: -140px;
background-image: url("./images/icons/icon_btn_media_play.png");
background-repeat: no-repeat;
background-position: right center;
background-size: contain;
}
.main .ctzgen .bg .owl-carousel .owl-item.movieplay .ctz_mv_ctrl::before {
animation-name: iconCtzMvCtrlBtn;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-fill-mode: forwards;
animation-duration: 1s;
}
@keyframes iconCtzMvCtrlBtn {
0% {
transform: rotateX(0deg);
}
50% {
transform: rotateX(90deg);
background-image: url("./images/icons/icon_btn_media_stop.png");
}
100% {
transform: rotateX(0deg);
background-image: url("./images/icons/icon_btn_media_stop.png");
}
}
.main .ctzgen .bg .owl-carousel .owl-item .ctz_mv_ctrl::after {
content: var(--playmsg);
}
.main .ctzgen .bg .owl-carousel .owl-item.movieplay .ctz_mv_ctrl::after {
animation-delay: 1s;
animation-name: msgCtzMvCtrlBtn;
animation-iteration-count: 1;
animation-timing-function: ease-in;
animation-fill-mode: forwards;
animation-duration: 2s;
}
@keyframes msgCtzMvCtrlBtn {
0% {
opacity: 1;
}
25% {
opacity: 0;
content: var(--stopmsg);
}
50% {
opacity: 1;
content: var(--stopmsg);
}
100% {
opacity: 1;
content: var(--stopmsg);
}
}
.image-slider {
position: absolute;
top: 0px;
left: 0px;
width: 480px;
height: 272px;
}
.main #imageGallery {
position: absolute;
top: 0px;
left: 0%;
width: 480px;
height: 272px;
padding: 0px;
overflow: hidden;
}

View File

@@ -0,0 +1,26 @@
/* Brocure */
.guide {
position: absolute;
top: 0px;
left: 0px;
width: 1920px;
height: 1080px;
margin: 0;
padding: 0;
z-index: 2;
display: block;
}
.guide>.tips {
position: absolute;
top: 1034px;
left: 0px;
width: 1920px;
height: 40px;
font-size: 32px;
text-align: center;
line-height: 40px;
background-color: rgba(50,40,26, 0.7);
color: rgb(255, 255, 255);
}

View File

@@ -0,0 +1,43 @@
/* 뉴스 */
.news {
position: absolute;
top: 1044px;
left: 0;
width: 100%;
height: 36px;
background-color: rgba(77, 40, 21, 0.7);
filter: drop-shadow(0 -10px 5px rgba(0, 0, 0, 0.5));
display: none;
z-index: 1;
}
.news>.title {
position: absolute;
width: 160px;
color: rgb(235, 235, 235);
font-size: 32px;
line-height: 32px;
text-align: center;
border: solid rgba(0, 0, 0, 0.5);
margin: 0 20px 0 20px;
background-color: rgba(128, 128, 128, 0.3);
}
.news>.newsctz {
padding: 0;
margin: 8px 0 0 200px;
color: rgb(165, 175, 185);
}
.news>.newsctz #hoteltv-news-ticker li {
font-size: 26px;
line-height: 24px;
}
.news>.newsctz #hoteltv-news-ticker li img {
height: 34px;
vertical-align: top;
/* padding: 3px 10px 10px 0; */
object-fit: cover;
}

View File

@@ -0,0 +1,174 @@
.main .sub {
position: absolute;
top: 1080px;
left: 0px;
width: 1920px;
height: 1080px;
background-color: black;
display: none;
}
.main .sub .bg {
position: absolute;
top: 0px;
left: 0%;
width: 100%;
height: 100%;
padding: 0px;
overflow: hidden;
display: block;
}
.main .sub .bg div#lst_smbg {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.main .sub .bg .owl-carousel .owl-stage-outer {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.main .sub .bg .owl-carousel .owl-stage-outer .owl-stage {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.main .sub .bg .owl-carousel .owl-stage-outer .owl-stage .owl-item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
.main .sub .bg div .item {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
/* STEP[#003]: Define SUB-MENU SELECTOR FRAMES */
.main .sub .slider {
position: absolute;
top: 864px;
left: 0px;
width: 1920px;
height: 170px;
padding-top: 50px;
overflow: hidden;
display: none;
}
.main .sub .slider div {
height: 120px;
max-height: 120px;
padding-left: 0;
margin: 0;
}
div#sm_item_title {
position: absolute;
top: 40px;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
color: rgb(235, 235, 235);
/* font-size: 2.2vw; */
font-size: 34px;
white-space: nowrap;
text-align: center;
}
div#sm_item_icon {
margin: 0;
padding: 0;
display: block
}
/* OWL Sub Menu Selector Container */
.main .sub .slider .owl-carousel .owl-item.active.focus div [id*="sm_item_icon"] {
background-image: var(--icon_focus);
}
.main .sub .slider .owl-carousel .owl-item.active[class*="unfocus"] div [id*="sm_item_icon"] {
background-image: var(--icon_unfocus);
}
.main .sub .slider .owl-carousel .owl-item.active.focus div [id*="sm_item_title"] {
transform: scale(1.2);
}
.main .sub .slider .owl-dots {
position: absolute;
top: -50px;
width: 100%;
align-content: center;
}
.main .sub .slider .owl-dots .owl-dot span {
width: 20px;
height: 20px;
}
.main .sub .slider .owl-dots .owl-dot.active span {
background: rgb(255, 192, 0);
}
.main .sub .bg .bg_ctz_thumb_frame {
position: absolute;
top: 130px;
left: 1550px;
width: 360px;
height: 734px;
line-height: 50px;
background-color: rgba(50,40,26, 0.7);
overflow: hidden;
}
.main .sub .bg .bg_ctz_thumb_frame #bg_ctz_thumb_item {
width: 320px;
height: 180px;
float: left;
margin: 10px 20px 10px 20px;
/* filter: drop-shadow(0 0 10px rgba(235, 235, 235, 0.9));
border-radius: 6px; */
text-align: center;
line-height: 50px;
font-size: 20px;
color: rgb(235, 235, 235);
border: 1px solid rgb(160, 160, 160);
display: inline;
}
.main .sub .bg .bg_ctz_thumb_frame #bg_ctz_thumb_title {
font-size: 30px;
margin-left: 20px;
color: rgb(235, 235, 235);
}
.main .sub .bg .bg_ctz_thumb_frame #bg_ctz_thumb_morenotice {
font-size: 22px;
margin: 20px 5px 10px 20px;
line-height: 25px;
overflow-wrap: break-word;
color: rgb(181, 218, 16);
animation: bg_ctz_thumb_morenotice_blinker 2s linear infinite;
}
@keyframes bg_ctz_thumb_morenotice_blinker {
50% {
color: rgb(235, 235, 235);
}
}

View File

@@ -0,0 +1,144 @@
/* STEP[#003]: Define WIDGET FRAMES */
.widjet {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 0px;
overflow: hidden;
display: none;
text-shadow: 0 0 10px rgba(68, 68, 68, 1), 0 0 20px rgba(10, 175, 230, 0);
z-index: 2;
}
.widjet .top {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100px;
/* background-color: rgba(0, 0, 0, 0.5); */
/* filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 1)); */
padding: 0px;
display: none;
}
/* SETP[#003-1]: Hotel Logo */
.widjet .top .hotellogo {
position: absolute;
width: 300px;
height: 80px;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
background-position: left center;
margin: 10px 0 4px 20px;
display: block;
}
/* SETP[#003-2]: Message */
.widjet .top .message {
position: absolute;
top: -11px;
left: 1618px;
height: 100px;
/* float: left; */
display: block;
padding: 24px 10px 10px 10px;
}
.widjet .top .message #unread_cnt {
/* position: relative; */
width: 66px;
height: 100%;
float: left;
background-image: url(images/icons/icon_widjet_top_message_cnt.png);
background-size: contain;
background-repeat: no-repeat;
padding: 4px 0px 0px 0px;
vertical-align: middle;
color: rgb(235, 235, 235);
font-size: 46px;
line-height: 52px;
text-align: center;
}
/* SETP[#003-3]: Weather */
.widjet .top .weather {
position: absolute;
top: -11px;
left: 1370px;
height: 100px;
float: left;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
display: block;
margin: 7px 0px 0px 0px;
}
.widjet .top .weather #icon {
position: relative;
/* top: -10px; */
left: 16px;
width: 100px;
height: 100%;
float: left;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
justify-content: center;
display: flex;
align-items: center;
filter: drop-shadow(0 0px 5px rgba(0, 0, 0, 0.5));
}
.widjet .top .weather #temp {
position: relative;
left: 14px;
float: left;
font-size: 60px;
line-height: 100px;
vertical-align: middle;
color: rgb(235, 235, 235);
}
/* SETP[#003-4]: Date&Time */
.widjet .top .datetime {
position: absolute;
left: 1630px;
width: 270px;
height: 60px;
margin: 10px 30px 10px 0;
color: rgb(235, 235, 235);
}
.widjet .top .datetime p {
margin: 0;
padding: 0;
}
.widjet .top .datetime .time {
font-size: 52px;
line-height: 52px;
padding: 5px 0;
text-align: right;
/* -webkit-text-stroke: 1px rgb(64,64,64); */
}
.widjet .top .datetime .date {
letter-spacing: 0.1em;
font-size: 24px;
line-height: 24px;
text-align: right;
}

View File

@@ -0,0 +1,192 @@
body {
overflow: hidden;
}
.welcome {
position: absolute;
top: 0px;
left: 0px;
width: 1920px;
height: 1080px;
padding: 0px;
display: none;
z-index: 1;
}
.startup {
top: 0px;
left: 0px;
position: absolute;
width: 100%;
height: 100%;
padding: 0px;
/* background-image: url(./images/hoteltv_service_preparing.png); */
background-image: url(./images/hoteltv_service_preparing_joson.jpg);
background-size: cover;
background-repeat: no-repeat;
}
.welcome .frame {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
padding: 0px;
background-color: rgba(0, 0, 0, 1);
background-image: none;
background-size: cover;
background-repeat: no-repeat;
display: none;
}
.welcome .frame .msgwin {
position: absolute;
top: 98px;
left: 519px;
width: 884px;
height: 648px;
padding: 0px;
/* background-image: url(./images/bg_language_welcome_box.png);
background-size: cover; */
background-repeat: no-repeat;
background: linear-gradient(rgba(50,40,26,0.7),rgba(50,46,26,0.85));
border-radius: 11px;
filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.5));
}
.welcome .frame .msgwin #hotellogo {
position: absolute;
top: 108px;
left: 135px;
width: 634px;
height: 270px;
padding: 0px;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
/* background-position: center; */
background-position: top;
}
.welcome .frame .msgwin #guestname {
position: absolute;
top: 424px;
left: 0px;
width: 804px;
height: 65px;
padding: 0px 0px 5px 0px;
margin: 0px 40px 0px 40px;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
border-bottom: solid rgb(192,192,192) 3px;
font-size: 65px;
justify-content: center;
text-align: center;
color: rgb(235, 235, 235);
line-height: 65px;
max-width: 864px;
display: none;
}
.welcome .frame .msgwin #welcomemsg {
position: absolute;
top: 516px;
left: 0px;
width: 804px;
height: 44px;
/* padding: 0px; */
margin: 0px 40px 0px 40px;
background-image: none;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
font-size: 33px;
justify-content: center;
text-align: center;
color: rgb(235, 235, 235);
line-height: 33px;
max-width: 864px;
display: none;
}
.welcome .frame .guide#langsel {
position: absolute;
top: 1037px;
left: 0px;
width: 1920px;
height: 54px;
background-color: rgba(0, 0, 0, 0.8);
display: inline-block;
color: rgba(200, 200, 200, 1);
font-size: 32px;
line-height: 43px;
text-align: center;
border-top: solid rgb(128, 128, 128);
}
.welcome #lst_langsel {
position: absolute;
top: 962px;
left: 0;
height: 76px;
line-height: 76px;
margin: 0;
padding: 0;
overflow: hidden;
display: none;
}
.welcome #lst_langsel .item {
color: rgba(200, 200, 200, 1);
font-size: 44px;
text-align: center;
background-repeat: no-repeat;
background-size: cover;
}
.welcome #lst_langsel .owl-item.active.center div {
background-image: var(--btn_focus);
}
.welcome #lst_langsel .owl-item.active div {
background-image: var(--btn_unfocus);
}
.control .skip_video {
z-index: 10000;
position: absolute;
z-index: 10000;
top: 927px;
left: 1579px;
width: 246px;
height: 68px;
padding: 0px;
background-color: rgba(0, 0, 0, 0.0);
background-image: none;
background-size: contain;
background-repeat: no-repeat;
display: none;
}
#debugwin {
z-index: 10000;
position: absolute;
top: 11px;
bottom: 22px;
right: 11px;
font-size: 12px;
background-color: rgba(18, 18, 18, 0.3);
text-align: left;
color: rgb(235, 235, 235);
line-height: 24px;
padding-left: 5px;
padding-top: 5px;
display: inline-flex;
max-width: 500px;
overflow-wrap: break-word;
word-wrap: break-word;
display: none;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 204 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 351 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 202 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 113 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 675 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 166 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 133 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 354 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 699 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 858 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 399 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 756 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 557 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 785 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 473 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 586 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 110 KiB

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Some files were not shown because too many files have changed in this diff Show More