mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
fix(scrollView): pull to refresh spin back. Fixes #774
This commit is contained in:
@@ -176,6 +176,7 @@ body.grade-c {
|
||||
font-size: 30px;
|
||||
|
||||
.icon-pulling {
|
||||
@include animation-name(refresh-spin-back);
|
||||
@include animation-duration(200ms);
|
||||
@include animation-timing-function(linear);
|
||||
@include animation-fill-mode(both);
|
||||
@@ -192,6 +193,16 @@ body.grade-c {
|
||||
100% {-webkit-transform: rotate(-180deg); }
|
||||
}
|
||||
|
||||
@keyframes refresh-spin-back {
|
||||
0% { transform: rotate(-180deg); }
|
||||
100% { transform: rotate(0); }
|
||||
}
|
||||
|
||||
@-webkit-keyframes refresh-spin-back {
|
||||
0% {-webkit-transform: rotate(-180deg); }
|
||||
100% {-webkit-transform: rotate(0); }
|
||||
}
|
||||
|
||||
.scroll-refresher.active {
|
||||
|
||||
.icon-pulling {
|
||||
|
||||
Reference in New Issue
Block a user