fix(scrollView): pull to refresh spin back. Fixes #774

This commit is contained in:
Max Lynch
2014-03-18 15:56:33 -05:00
parent ded469311d
commit 049aabc706

View File

@@ -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 {