actualizacion del loading de la plataforma
This commit is contained in:
parent
808847f541
commit
4710ed3d8c
|
@ -0,0 +1,57 @@
|
||||||
|
.app-loading .container {
|
||||||
|
margin: auto auto;
|
||||||
|
height: 100vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.app-loading .tittle {
|
||||||
|
margin-bottom: 40px;
|
||||||
|
color: #44b9ff;
|
||||||
|
letter-spacing: 4px;
|
||||||
|
text-transform: uppercase;
|
||||||
|
}
|
||||||
|
.app-loading .square-container {
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.app-loading .square {
|
||||||
|
margin: 4px;
|
||||||
|
width: 30px;
|
||||||
|
height: 30px;
|
||||||
|
border-radius: 7px;
|
||||||
|
animation: rotating 2s ease infinite;
|
||||||
|
}
|
||||||
|
.app-loading .square1 {
|
||||||
|
background: #192e4d;
|
||||||
|
animation-delay: 0.2s;
|
||||||
|
}
|
||||||
|
.app-loading .square2 {
|
||||||
|
background: #018adf;
|
||||||
|
animation-delay: 0.4s;
|
||||||
|
}
|
||||||
|
.app-loading .square3 {
|
||||||
|
background: #20a9fe;
|
||||||
|
animation-delay: 0.6s;
|
||||||
|
}
|
||||||
|
.app-loading .square4 {
|
||||||
|
background: #00e0ac;
|
||||||
|
animation-delay: 0.8s;
|
||||||
|
}
|
||||||
|
.app-loading .square5 {
|
||||||
|
background: #70ffde;
|
||||||
|
animation-delay: 1s;
|
||||||
|
}
|
||||||
|
@keyframes rotating {
|
||||||
|
0% {
|
||||||
|
transform: rotate(0) scale(1);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
transform: rotate(90deg) scale(0.6);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: rotate(90deg) scale(1);
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,199 @@
|
||||||
|
.loader {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.loader .l_main {
|
||||||
|
position: absolute;
|
||||||
|
top: 20%;
|
||||||
|
left: 50%;
|
||||||
|
width: 172px;
|
||||||
|
height: 128px;
|
||||||
|
margin: 0;
|
||||||
|
-webkit-transform: translate(-50%, -50%);
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
}
|
||||||
|
@media (max-width: 550px) {
|
||||||
|
.loader {
|
||||||
|
-webkit-transform: scale(0.75);
|
||||||
|
transform: scale(0.75);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 440px) {
|
||||||
|
.loader {
|
||||||
|
-webkit-transform: scale(0.5);
|
||||||
|
transform: scale(0.5);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.l_square {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(1) {
|
||||||
|
margin-left: 0px;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(2) {
|
||||||
|
margin-left: 44px;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(3) {
|
||||||
|
margin-left: 88px;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(4) {
|
||||||
|
margin-left: 132px;
|
||||||
|
}
|
||||||
|
.l_square span {
|
||||||
|
position: absolute;
|
||||||
|
top: 0px;
|
||||||
|
left: 20px;
|
||||||
|
height: 36px;
|
||||||
|
width: 36px;
|
||||||
|
border-radius: 2px;
|
||||||
|
background-color: #1c44b2;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(1) {
|
||||||
|
top: 0px;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(2) {
|
||||||
|
top: 44px;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(3) {
|
||||||
|
top: 88px;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(1) span {
|
||||||
|
-webkit-animation: animsquare1 2s infinite ease-in;
|
||||||
|
animation: animsquare1 2s infinite ease-in;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(2) span {
|
||||||
|
-webkit-animation: animsquare2 2s infinite ease-in;
|
||||||
|
animation: animsquare2 2s infinite ease-in;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(3) span {
|
||||||
|
-webkit-animation: animsquare3 2s infinite ease-in;
|
||||||
|
animation: animsquare3 2s infinite ease-in;
|
||||||
|
}
|
||||||
|
.l_square:nth-child(4) span {
|
||||||
|
-webkit-animation: animsquare4 2s infinite ease-in;
|
||||||
|
animation: animsquare4 2s infinite ease-in;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(1) {
|
||||||
|
-webkit-animation-delay: 0s;
|
||||||
|
animation-delay: 0s;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(2) {
|
||||||
|
-webkit-animation-delay: 0.15s;
|
||||||
|
animation-delay: 0.15s;
|
||||||
|
}
|
||||||
|
.l_square span:nth-child(3) {
|
||||||
|
-webkit-animation-delay: 0.3s;
|
||||||
|
animation-delay: 0.3s;
|
||||||
|
}
|
||||||
|
@-webkit-keyframes animsquare1 {
|
||||||
|
0%,
|
||||||
|
5%,
|
||||||
|
95%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
30%,
|
||||||
|
70% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes animsquare1 {
|
||||||
|
0%,
|
||||||
|
5%,
|
||||||
|
95%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
30%,
|
||||||
|
70% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes animsquare2 {
|
||||||
|
0%,
|
||||||
|
10%,
|
||||||
|
90%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
35%,
|
||||||
|
65% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes animsquare2 {
|
||||||
|
0%,
|
||||||
|
10%,
|
||||||
|
90%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
35%,
|
||||||
|
65% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes animsquare3 {
|
||||||
|
0%,
|
||||||
|
15%,
|
||||||
|
85%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
40%,
|
||||||
|
60% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes animsquare3 {
|
||||||
|
0%,
|
||||||
|
15%,
|
||||||
|
85%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
40%,
|
||||||
|
60% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes animsquare4 {
|
||||||
|
0%,
|
||||||
|
20%,
|
||||||
|
80%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
45%,
|
||||||
|
55% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes animsquare4 {
|
||||||
|
0%,
|
||||||
|
20%,
|
||||||
|
80%,
|
||||||
|
100% {
|
||||||
|
-webkit-transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
transform: translate(0px, 0px) rotate(0deg);
|
||||||
|
}
|
||||||
|
45%,
|
||||||
|
55% {
|
||||||
|
-webkit-transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
transform: translate(-40px, 0px) rotate(-90deg);
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,6 +12,8 @@
|
||||||
<link rel="icon" href="favicon.ico" />
|
<link rel="icon" href="favicon.ico" />
|
||||||
<link rel="manifest" href="manifest.webapp" />
|
<link rel="manifest" href="manifest.webapp" />
|
||||||
<link rel="stylesheet" href="content/css/loading.css" />
|
<link rel="stylesheet" href="content/css/loading.css" />
|
||||||
|
<link rel="stylesheet" href="content/css/loading-2.css" />
|
||||||
|
<link rel="stylesheet" href="content/css/loading-boxes.css" />
|
||||||
<!-- jhipster-needle-add-resources-to-root - JHipster will add new resources here -->
|
<!-- jhipster-needle-add-resources-to-root - JHipster will add new resources here -->
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
@ -23,16 +25,24 @@
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<jhi-main>
|
<jhi-main>
|
||||||
<div class="app-loading">
|
<div class="app-loading">
|
||||||
<div class="lds-pacman">
|
<div class="lds-pacman"></div>
|
||||||
<div>
|
<div class="loader">
|
||||||
<div></div>
|
<div class="l_main">
|
||||||
<div></div>
|
<div class="l_square"><span></span><span></span><span></span></div>
|
||||||
<div></div>
|
<div class="l_square"><span></span><span></span><span></span></div>
|
||||||
|
<div class="l_square"><span></span><span></span><span></span></div>
|
||||||
|
<div class="l_square"><span></span><span></span><span></span></div>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
</div>
|
||||||
<div></div>
|
|
||||||
<div></div>
|
<div class="container">
|
||||||
<div></div>
|
<div class="tittle"><h2>Cargando</h2></div>
|
||||||
|
<div class="square-container">
|
||||||
|
<div class="square square1"> </div>
|
||||||
|
<div class="square square2"> </div>
|
||||||
|
<div class="square square3"> </div>
|
||||||
|
<div class="square square4"> </div>
|
||||||
|
<div class="square square5"> </div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue