loading in CardSource when flag set

This commit is contained in:
Lachlan Kermode
2018-12-11 10:37:52 +00:00
parent e15a656479
commit bf0c78d0a0
4 changed files with 33 additions and 22 deletions

View File

@@ -41,10 +41,10 @@ https://github.com/tobiasahlin/SpinKit/blob/master/LICENSE
height: 40px;
position: relative;
margin: 20px auto;
margin: 10px auto;
}
.double-bounce1, .double-bounce2 {
.double-bounce, .double-bounce-overlay {
width: 100%;
height: 100%;
border-radius: 50%;
@@ -58,20 +58,21 @@ https://github.com/tobiasahlin/SpinKit/blob/master/LICENSE
animation: sk-bounce 3.0s infinite ease-in-out;
}
.double-bounce2 {
.double-bounce-overlay {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
background-color: black;
}
@-webkit-keyframes sk-bounce {
0%, 100% { -webkit-transform: scale(0.0) }
0%, 100% { -webkit-transform: scale(0.3) }
50% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bounce {
0%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
transform: scale(0.3);
-webkit-transform: scale(0.3);
} 50% {
transform: scale(1.0);
-webkit-transform: scale(1.0);