2022-10-29 17:21:14 +09:00
|
|
|
{% extends "base.html" %} {% block content %}
|
2022-11-12 23:47:21 +09:00
|
|
|
<div id="preloader">
|
|
|
|
|
<div class="demo">
|
|
|
|
|
<!-- <div class="loader-inner">-->
|
|
|
|
|
<div class="circle">
|
|
|
|
|
<div class="inner"></div>
|
2022-10-29 17:21:14 +09:00
|
|
|
</div>
|
2022-11-12 23:47:21 +09:00
|
|
|
<div class="circle">
|
|
|
|
|
<div class="inner"></div>
|
2022-11-06 15:54:46 +09:00
|
|
|
</div>
|
2022-11-12 23:47:21 +09:00
|
|
|
<div class="circle">
|
|
|
|
|
<div class="inner"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="circle">
|
|
|
|
|
<div class="inner"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="circle">
|
|
|
|
|
<div class="inner"></div>
|
|
|
|
|
</div>
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div>
|
|
|
|
|
<form id="program_list">
|
|
|
|
|
{{ macros.setting_input_text_and_buttons('code', '작품 Code', [['analysis_btn', '분석'],
|
|
|
|
|
['go_ohli24_btn', 'Go OHLI24']], desc='예) "https://ohli24.net/c/녹을 먹는 비스코" 이나 "녹을
|
|
|
|
|
먹는 비스코"') }}
|
|
|
|
|
</form>
|
|
|
|
|
<form id="program_auto_form">
|
|
|
|
|
<div id="episode_list"></div>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<!--전체-->
|
|
|
|
|
<script src="{{ url_for('.static', filename='js/sjva_ui14.js') }}"></script>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
|
const package_name = "{{arg['package_name'] }}";
|
|
|
|
|
const sub = "{{arg['sub'] }}";
|
|
|
|
|
const ohli24_url = "{{arg['ohli24_url']}}";
|
|
|
|
|
{#let current_data = '';#}
|
|
|
|
|
let accessibleCount = 1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const params = new Proxy(new URLSearchParams(window.location.search), {
|
|
|
|
|
get: (searchParams, prop) => searchParams.get(prop),
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const loader = document.getElementById("preloader");
|
|
|
|
|
|
|
|
|
|
const dismissLoadingScreen = function () {
|
|
|
|
|
loader.style.display = "none";
|
|
|
|
|
$('.demo').css("display", "none")
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const wait3seconds = function () {
|
|
|
|
|
// REFERENCE: https://www.w3schools.com/jsref/met_win_settimeout.asp
|
|
|
|
|
const result = setTimeout(dismissLoadingScreen, 2000);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
window.addEventListener("load", wait3seconds);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function findGetParameter(parameterName) {
|
|
|
|
|
let result = null,
|
|
|
|
|
tmp = [];
|
|
|
|
|
const items = location.search.substr(1).split("&");
|
|
|
|
|
for (let index = 0; index < items.length; index++) {
|
|
|
|
|
tmp = items[index].split("=");
|
|
|
|
|
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
|
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function analyze(wr_id, bo_table) {
|
|
|
|
|
{#e.preventDefault();#}
|
|
|
|
|
|
|
|
|
|
const code = document.getElementById("code").value
|
|
|
|
|
console.log(code)
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {code: code, wr_id: wr_id, bo_table: bo_table},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (ret) {
|
|
|
|
|
if (ret.ret === 'success' && ret.data != null) {
|
|
|
|
|
// {#console.log(ret.code)#}
|
|
|
|
|
console.log(ret.data)
|
|
|
|
|
make_program(ret.data)
|
|
|
|
|
} else {
|
|
|
|
|
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function make_program(data) {
|
|
|
|
|
current_data = data;
|
|
|
|
|
console.log(data)
|
|
|
|
|
console.log("current_data::", current_data)
|
|
|
|
|
let str = '';
|
|
|
|
|
let tmp = '';
|
|
|
|
|
tmp = '<div class="form-inline">'
|
|
|
|
|
tmp += m_button('check_download_btn', '선택 다운로드 추가', []);
|
|
|
|
|
tmp += m_button('all_check_on_btn', '전체 선택', []);
|
|
|
|
|
tmp += m_button('all_check_off_btn', '전체 해제', []);
|
|
|
|
|
/*
|
|
|
|
|
tmp += ' <input id="new_title" name="new_title" class="form-control form-control-sm" value="'+data.title+'">'
|
|
|
|
|
tmp += '</div>'
|
|
|
|
|
tmp += m_button('apply_new_title_btn', '저장폴더명, 파일명 제목 변경', []);
|
|
|
|
|
tmp += m_button('search_tvdb_btn', 'TVDB', []);
|
|
|
|
|
tmp = m_button_group(tmp)
|
|
|
|
|
*/
|
|
|
|
|
str += tmp
|
|
|
|
|
// program
|
|
|
|
|
{#str += m_hr_black();#}
|
|
|
|
|
str += "<div class='card p-lg-5 mt-md-3 p-md-3 border-light'>"
|
|
|
|
|
str += m_row_start(0);
|
|
|
|
|
tmp = ''
|
|
|
|
|
if (data.image != null)
|
|
|
|
|
tmp = '<img src="' + data.image + '" class="img-fluid" />';
|
|
|
|
|
str += m_col(3, tmp)
|
|
|
|
|
tmp = ''
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '제목', 'right') + m_col(9, data.title) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '원제', 'right') + m_col(9, data.des._otit) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '감독', 'right') + m_col(9, data.des._dir) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '제작사', 'right') + m_col(9, data.des._pub) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '장르', 'right') + m_col(9, data.des._tag) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '분류', 'right') + m_col(9, data.des._classifi) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '방영일', 'right') + m_col(9, data.date + '(' + data.day + ')') + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '등급', 'right') + m_col(9, data.des._grade) + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '총화수', 'right') + m_col(9, data.des._total_chapter ? data.des._total_chapter : '') + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '상영시간', 'right') + m_col(9, data.des._show_time ? data.des._show_time : '') + m_row_end();
|
|
|
|
|
tmp += m_row_start(2) + m_col(3, '줄거리', 'right') + m_col(9, data.ser_description) + m_row_end();
|
|
|
|
|
str += m_col(9, tmp)
|
|
|
|
|
str += m_row_end();
|
|
|
|
|
|
|
|
|
|
str += "</div>"
|
|
|
|
|
{#str += m_hr_black();#}
|
|
|
|
|
|
|
|
|
|
for (let i in data.episode) {
|
|
|
|
|
str += m_row_start();
|
|
|
|
|
tmp = '';
|
|
|
|
|
if (data.episode[i].thumbnail)
|
|
|
|
|
tmp = '<img src="' + data.episode[i].thumbnail + '" class="img-fluid">'
|
|
|
|
|
str += m_col(3, tmp)
|
|
|
|
|
tmp = '<strong>' + data.episode[i].title + '</strong>';
|
|
|
|
|
tmp += '<br>';
|
|
|
|
|
tmp += data.episode[i].date + '<br>';
|
|
|
|
|
|
|
|
|
|
tmp += '<div class="form-inline">'
|
|
|
|
|
tmp += '<input id="checkbox_' + i + '" name="checkbox_' + i + '" type="checkbox" checked data-toggle="toggle" data-on="선 택" data-off="-" data-onstyle="success" data-offstyle="danger" data-size="small"> '
|
|
|
|
|
tmp += m_button('add_queue_btn', '다운로드 추가', [{'key': 'idx', 'value': i}])
|
|
|
|
|
tmp += j_button('insert_download_btn', '다운로드 추가', {
|
|
|
|
|
code: data.episode[i]._id,
|
|
|
|
|
});
|
|
|
|
|
tmp += j_button(
|
|
|
|
|
'force_insert_download_btn',
|
|
|
|
|
'다운로드 추가 (DB무시)',
|
|
|
|
|
{code: data.episode[i]._id}
|
|
|
|
|
);
|
|
|
|
|
tmp += '</div>'
|
|
|
|
|
str += m_col(9, tmp)
|
|
|
|
|
str += m_row_end();
|
|
|
|
|
{#if (i != data.length - 1) str += m_hr(0);#}
|
|
|
|
|
}
|
|
|
|
|
document.getElementById("episode_list").innerHTML = str;
|
|
|
|
|
$('input[id^="checkbox_"]').bootstrapToggle()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$(function () {
|
|
|
|
|
console.log(params.wr_id)
|
|
|
|
|
console.log(findGetParameter('wr_id'))
|
|
|
|
|
console.log(params.code)
|
|
|
|
|
if (params.code === '') {
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
document.getElementById("code").value = params.code
|
|
|
|
|
// {#document.getElementById("analysis_btn").click();#}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ("{{arg['ohli24_current_code']}}" !== "") {
|
|
|
|
|
if (params.code === null) {
|
|
|
|
|
console.log('params.code === null')
|
|
|
|
|
document.getElementById("code").value = "{{arg['ohli24_current_code']}}";
|
|
|
|
|
|
|
|
|
|
} else if (params.code === '') {
|
|
|
|
|
document.getElementById("code").value = "{{arg['ohli24_current_code']}}";
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
console.log('params code exist')
|
|
|
|
|
console.log(params.code)
|
|
|
|
|
document.getElementById("code").value = params.code
|
|
|
|
|
|
|
|
|
|
analyze(params.wr_id, params.bo_table)
|
|
|
|
|
// document.getElementById("analysis_btn").click();
|
|
|
|
|
// $('#analysis_btn').trigger('click')
|
|
|
|
|
}
|
|
|
|
|
// 값이 공백이 아니면 분석 버튼 계속 누름
|
|
|
|
|
// {#document.getElementById("analysis_btn").click();#}
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
$(document).ready(function () {
|
|
|
|
|
|
|
|
|
|
console.log('wr_id::', params.wr_id)
|
|
|
|
|
if (document.getElementById("code").value !== "") {
|
|
|
|
|
{#document.getElementById("analysis_btn").click()#}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
console.log(accessibleCount)
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#analysis_btn").unbind("click").bind('click', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
e.stopPropagation();
|
|
|
|
|
|
|
|
|
|
accessibleCount = accessibleCount - 1; //count부터 뺀다
|
|
|
|
|
console.log(accessibleCount)
|
|
|
|
|
if (accessibleCount < 0) {
|
|
|
|
|
alert("이미 작업이 수행중 입니다.");
|
|
|
|
|
} else {
|
|
|
|
|
const code = document.getElementById("code").value
|
|
|
|
|
console.log(code)
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/analysis',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {code: code},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (ret) {
|
|
|
|
|
if (ret.ret === 'success' && ret.data != null) {
|
|
|
|
|
// {#console.log(ret.code)#}
|
|
|
|
|
console.log(ret.data)
|
|
|
|
|
make_program(ret.data)
|
|
|
|
|
} else {
|
|
|
|
|
$.notify('<strong>분석 실패</strong><br>' + ret.log, {type: 'warning'});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
console.log(accessibleCount)
|
|
|
|
|
accessibleCount++
|
|
|
|
|
console.log(accessibleCount)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#go_ohli24_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
window.open("{{arg['ohli24_url']}}", "_blank");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#all_check_on_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('input[id^="checkbox_"]').bootstrapToggle('on')
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#all_check_off_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
$('input[id^="checkbox_"]').bootstrapToggle('off')
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#add_queue_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
data = current_data.episode[$(this).data('idx')];
|
|
|
|
|
console.log('data:::>', data)
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/add_queue',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {data: JSON.stringify(data)},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (data) {
|
|
|
|
|
console.log('#add_queue_btn::data >>', data)
|
|
|
|
|
if (data.ret == 'enqueue_db_append' || data.ret == 'enqueue_db_exist') {
|
|
|
|
|
$.notify('<strong>다운로드 작업을 추가 하였습니다.</strong>', {type: 'success'});
|
|
|
|
|
} else if (data.ret == 'queue_exist') {
|
|
|
|
|
$.notify('<strong>이미 큐에 있습니다. 삭제 후 추가하세요.</strong>', {type: 'warning'});
|
|
|
|
|
} else if (data.ret == 'db_completed') {
|
|
|
|
|
$.notify('<strong>DB에 완료 기록이 있습니다.</strong>', {type: 'warning'});
|
|
|
|
|
} else {
|
|
|
|
|
$.notify('<strong>추가 실패</strong><br>' + ret.log, {type: 'warning'});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$("body").on('click', '#check_download_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
all = $('input[id^="checkbox_"]');
|
|
|
|
|
let data = [];
|
|
|
|
|
let idx;
|
|
|
|
|
for (let i in all) {
|
|
|
|
|
if (all[i].checked) {
|
|
|
|
|
idx = parseInt(all[i].id.split('_')[1])
|
|
|
|
|
data.push(current_data.episode[idx]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (data.length == 0) {
|
|
|
|
|
$.notify('<strong>선택하세요.</strong>', {type: 'warning'});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '/' + package_name + '/ajax/' + sub + '/add_queue_checked_list',
|
|
|
|
|
type: "POST",
|
|
|
|
|
cache: false,
|
|
|
|
|
data: {data: JSON.stringify(data)},
|
|
|
|
|
dataType: "json",
|
|
|
|
|
success: function (data) {
|
|
|
|
|
$.notify('<strong>백그라운드로 작업을 추가합니다.</strong>', {type: 'success'});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('body').on('click', '#insert_download_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
let code = $(this).data('code');
|
|
|
|
|
|
|
|
|
|
globalSendCommand('download_program', code, false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$('body').on('click', '#force_insert_download_btn', function (e) {
|
|
|
|
|
e.preventDefault();
|
|
|
|
|
let code = $(this).data('code');
|
|
|
|
|
globalSendCommand('download_program', code, true);
|
|
|
|
|
});
|
|
|
|
|
</script>
|
|
|
|
|
<style>
|
|
|
|
|
body {
|
|
|
|
|
font-family: NanumSquareNeo, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue,
|
|
|
|
|
Noto Sans, Liberation Sans, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
|
|
|
|
|
Segoe UI Symbol, Noto Color Emoji;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
body {
|
|
|
|
|
background-image: linear-gradient(90deg, #33242c, #263341, #17273a);
|
|
|
|
|
color: #d6eaf8;
|
|
|
|
|
}
|
|
|
|
|
button.code-button {
|
|
|
|
|
min-width: 82px !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tooltip {
|
|
|
|
|
position: relative;
|
|
|
|
|
display: block;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:after {
|
|
|
|
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
|
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
|
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
padding: 7px 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
top: 90%;
|
|
|
|
|
|
|
|
|
|
content: attr(data-tooltip-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover:after {
|
|
|
|
|
top: 230%;
|
|
|
|
|
left: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover {
|
|
|
|
|
position: relative;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:after {
|
|
|
|
|
-webkit-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
-moz-transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
transition: bottom 0.3s ease-in-out, opacity 0.3s ease-in-out;
|
|
|
|
|
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
|
|
|
|
|
|
|
|
-webkit-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
-moz-box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
box-shadow: 0px 0px 3px 1px rgba(50, 50, 50, 0.4);
|
|
|
|
|
|
|
|
|
|
-webkit-border-radius: 5px;
|
|
|
|
|
-moz-border-radius: 5px;
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
padding: 7px 12px;
|
|
|
|
|
position: absolute;
|
|
|
|
|
width: auto;
|
|
|
|
|
min-width: 50px;
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
word-wrap: break-word;
|
|
|
|
|
|
|
|
|
|
z-index: 9999;
|
|
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
left: -9999px;
|
|
|
|
|
top: -210% !important;
|
|
|
|
|
|
|
|
|
|
content: attr(data-tooltip-text);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[data-tooltip-text]:hover:after {
|
|
|
|
|
top: 130%;
|
|
|
|
|
left: 0;
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card {
|
|
|
|
|
border: none;
|
|
|
|
|
box-shadow: inset 1px 1px hsl(0deg 0% 100% / 20%), inset -1px -1px hsl(0deg 0% 100% / 10%),
|
|
|
|
|
1px 3px 24px -1px rgb(0 0 0 / 15%);
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
background-image: linear-gradient(125deg, hsla(0, 0%, 100%, 0.3), hsla(0, 0%, 100%, 0.2) 70%);
|
|
|
|
|
backdrop-filter: blur(5px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.card.border-light {
|
|
|
|
|
border-radius: 30px 10px;
|
|
|
|
|
--bs-border-opacity: 1;
|
|
|
|
|
border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#airing_list {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.cut-text {
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
width: 100%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#screen_movie_list {
|
|
|
|
|
margin-top: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*@import url(https://fonts.googleapis.com/css?family=Lato);*/
|
|
|
|
|
/*a {*/
|
|
|
|
|
/* position: fixed;*/
|
|
|
|
|
/* bottom: 2%;*/
|
|
|
|
|
/* display: block;*/
|
|
|
|
|
/* text-align: center;*/
|
|
|
|
|
/* color: #0fa;*/
|
|
|
|
|
/* font-family: "Lato", sans-serif;*/
|
|
|
|
|
/* text-decoration: none !important;*/
|
|
|
|
|
/* width: 100%;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
|
/*body, html {*/
|
|
|
|
|
/* width: 100%;*/
|
|
|
|
|
/* height: 100%;*/
|
|
|
|
|
/* overflow: hidden;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
|
/*body {*/
|
|
|
|
|
/* background: linear-gradient(90deg, #00b377, #00d68f);*/
|
|
|
|
|
/* box-shadow: inset 0px 0px 90px rgba(0, 0, 0, 0.5);*/
|
|
|
|
|
/* margin: 0px;*/
|
|
|
|
|
/* padding: 0px;*/
|
|
|
|
|
/*}*/
|
|
|
|
|
|
|
|
|
|
.demo {
|
|
|
|
|
width: 100px;
|
|
|
|
|
height: 102px;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 45%;
|
|
|
|
|
left: calc(50% - 50px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
position: absolute;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle .inner {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
border: 5px solid rgba(0, 255, 170, 0.7);
|
|
|
|
|
border-right: none;
|
|
|
|
|
border-top: none;
|
|
|
|
|
backgroudn-clip: padding;
|
|
|
|
|
box-shadow: inset 0px 0px 10px rgba(0, 255, 170, 0.15);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@-webkit-keyframes spin {
|
|
|
|
|
from {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
|
from {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
to {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(0) {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(0) .inner {
|
|
|
|
|
-webkit-animation: spin 2s infinite linear;
|
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(1) {
|
|
|
|
|
transform: rotate(70deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(1) .inner {
|
|
|
|
|
-webkit-animation: spin 2s infinite linear;
|
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(2) {
|
|
|
|
|
transform: rotate(140deg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.circle:nth-of-type(2) .inner {
|
|
|
|
|
-webkit-animation: spin 2s infinite linear;
|
|
|
|
|
animation: spin 2s infinite linear;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.demo {
|
|
|
|
|
-webkit-animation: spin 5s infinite linear;
|
|
|
|
|
animation: spin 5s infinite linear;
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
background: radial-gradient(#222, #000);
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
/*position: fixed;*/
|
|
|
|
|
right: 0;
|
|
|
|
|
/*top: 0;*/
|
|
|
|
|
z-index: 99999;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 50%;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.loader-inner {
|
|
|
|
|
bottom: 0;
|
|
|
|
|
height: 60px;
|
|
|
|
|
left: 0;
|
|
|
|
|
margin: auto;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
width: 100px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#preloader {
|
|
|
|
|
/*background-color: green;*/
|
|
|
|
|
/*color: white;*/
|
|
|
|
|
/*height: 100vh;*/
|
|
|
|
|
/*width: 100%;*/
|
|
|
|
|
/*position: fixed;*/
|
|
|
|
|
/*z-index: 100;*/
|
|
|
|
|
background: rgba(0, 0, 0, 0.2);
|
|
|
|
|
background: radial-gradient(#222, #000);
|
|
|
|
|
bottom: 0;
|
|
|
|
|
left: 0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 0;
|
|
|
|
|
top: 0;
|
|
|
|
|
z-index: 99999;
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
</style>
|
2022-10-29 17:21:14 +09:00
|
|
|
{% endblock %}
|