mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-19 11:41:20 +08:00
Loading
This commit is contained in:
@ -48,6 +48,7 @@ ionic {
|
|||||||
|
|
||||||
ion-loading-icon {
|
ion-loading-icon {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
align-self: center;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
||||||
font-family: 'Ionicons';
|
font-family: 'Ionicons';
|
||||||
@ -56,6 +57,26 @@ ion-loading-icon {
|
|||||||
}
|
}
|
||||||
font-size: 128px;
|
font-size: 128px;
|
||||||
color: #666666;
|
color: #666666;
|
||||||
|
|
||||||
|
animation: rotation 45s infinite linear;
|
||||||
|
-webkit-animation: rotation 45s infinite linear;
|
||||||
|
|
||||||
|
}
|
||||||
|
@-webkit-keyframes rotation {
|
||||||
|
from {
|
||||||
|
-webkit-transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
-webkit-transform: rotate(359deg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes rotation {
|
||||||
|
from {
|
||||||
|
transform: rotate(0deg);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
transform: rotate(359deg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ion-nav {
|
ion-nav {
|
||||||
|
Reference in New Issue
Block a user