重新发布 1.1.2
This commit is contained in:
parent
3eb3d0350d
commit
996efc67cd
|
@ -105,6 +105,7 @@
|
|||
<div id="quit-box" onclick="RemoveRewardMask()"></div>
|
||||
|
||||
|
||||
|
||||
<!--评论弹幕弹窗 -->
|
||||
<div th:if="${theme.config.comments.twikoo && #strings.equals(theme.config.comments.use, 'Twikoo') && not #strings.isEmpty(theme.config.comments.envId)
|
||||
&& not #strings.isEmpty(theme.config.comments.accessToken)}" class="comment-barrage needEndHide"
|
||||
|
|
|
@ -150,6 +150,7 @@
|
|||
<link rel="stylesheet" th:href="@{/assets/libs/fancybox/jquery.fancybox.min.css}">
|
||||
|
||||
|
||||
|
||||
<!-- icon图标 -->
|
||||
<link rel="preload" as="style" onload="this.rel='stylesheet'"
|
||||
th:href="@{/assets/icon/fontawesome/fontawesome.min.css}">
|
||||
|
|
|
@ -9,83 +9,83 @@
|
|||
|
||||
<style type="text/css">
|
||||
|
||||
#loading-box .loading-image-dot {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: #6bdf8f;
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
border: 6px solid #fff;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
-webkit-transform: translate(18px, 24px);
|
||||
-moz-transform: translate(18px, 24px);
|
||||
-o-transform: translate(18px, 24px);
|
||||
-ms-transform: translate(18px, 24px);
|
||||
transform: translate(18px, 24px);
|
||||
}
|
||||
#loading-box .loading-image-dot {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
background: #6bdf8f;
|
||||
position: absolute;
|
||||
border-radius: 50%;
|
||||
border: 6px solid #fff;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
-webkit-transform: translate(18px, 24px);
|
||||
-moz-transform: translate(18px, 24px);
|
||||
-o-transform: translate(18px, 24px);
|
||||
-ms-transform: translate(18px, 24px);
|
||||
transform: translate(18px, 24px);
|
||||
}
|
||||
|
||||
#loading-box {
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
#loading-box {
|
||||
-webkit-user-select: none;
|
||||
}
|
||||
|
||||
#loading-box .loading-bg {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
background: var(--heo-background);
|
||||
z-index: 1999;
|
||||
opacity: 1;
|
||||
transition: 0.2s;
|
||||
pointer-events: all;
|
||||
animation: showLoading 0.3s 0s backwards;
|
||||
}
|
||||
|
||||
#loading-box.loaded .loading-bg {
|
||||
pointer-events: none;
|
||||
transition: 0.2s;
|
||||
animation: hideLoading 0.3s 0s forwards;
|
||||
}
|
||||
|
||||
#loading-box .loading-img {
|
||||
width: 100px;
|
||||
margin: auto;
|
||||
animation-duration: 0.2s;
|
||||
animation-name: loadingAction;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
@keyframes loadingAction {
|
||||
from {
|
||||
#loading-box .loading-bg {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: fixed;
|
||||
background: var(--heo-background);
|
||||
z-index: 1999;
|
||||
opacity: 1;
|
||||
transition: 0.2s;
|
||||
pointer-events: all;
|
||||
animation: showLoading 0.3s 0s backwards;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hideLoading {
|
||||
from {
|
||||
opacity: 1;
|
||||
#loading-box.loaded .loading-bg {
|
||||
pointer-events: none;
|
||||
transition: 0.2s;
|
||||
animation: hideLoading 0.3s 0s forwards;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes showLoading {
|
||||
from {
|
||||
opacity: 0;
|
||||
#loading-box .loading-img {
|
||||
width: 100px;
|
||||
margin: auto;
|
||||
animation-duration: 0.2s;
|
||||
animation-name: loadingAction;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
@keyframes loadingAction {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0.6;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes hideLoading {
|
||||
from {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes showLoading {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<div class="loading-bg">
|
||||
|
|
Loading…
Reference in New Issue