diff options
| author | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
|---|---|---|
| committer | Pliable Pixels <pliablepixels@gmail.com> | 2017-09-27 12:42:48 -0400 |
| commit | 210e8feae2fb4842bfb2de38666e6c41671fef3c (patch) | |
| tree | cbdafa34b1a6260bb20236d7e9de9eb1b690a1c5 /www/lib/ionic/scss/_animations.scss | |
| parent | e7e7baeaad90229ccb3e0f45f4ebd77be7d79b14 (diff) | |
removed lib
Diffstat (limited to 'www/lib/ionic/scss/_animations.scss')
| -rw-r--r-- | www/lib/ionic/scss/_animations.scss | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/www/lib/ionic/scss/_animations.scss b/www/lib/ionic/scss/_animations.scss deleted file mode 100644 index 67e0e184..00000000 --- a/www/lib/ionic/scss/_animations.scss +++ /dev/null @@ -1,48 +0,0 @@ - -// Slide up from the bottom, used for modals -// ------------------------------- - -.slide-in-up { - @include translate3d(0, 100%, 0); -} -.slide-in-up.ng-enter, -.slide-in-up > .ng-enter { - @include transition(all cubic-bezier(.1, .7, .1, 1) 400ms); -} -.slide-in-up.ng-enter-active, -.slide-in-up > .ng-enter-active { - @include translate3d(0, 0, 0); -} - -.slide-in-up.ng-leave, -.slide-in-up > .ng-leave { - @include transition(all ease-in-out 250ms); -} - - -// Scale Out -// Scale from hero (1 in this case) to zero -// ------------------------------- - -@-webkit-keyframes scaleOut { - from { -webkit-transform: scale(1); opacity: 1; } - to { -webkit-transform: scale(0.8); opacity: 0; } -} -@keyframes scaleOut { - from { transform: scale(1); opacity: 1; } - to { transform: scale(0.8); opacity: 0; } -} - - -// Super Scale In -// Scale from super (1.x) to duper (1 in this case) -// ------------------------------- - -@-webkit-keyframes superScaleIn { - from { -webkit-transform: scale(1.2); opacity: 0; } - to { -webkit-transform: scale(1); opacity: 1 } -} -@keyframes superScaleIn { - from { transform: scale(1.2); opacity: 0; } - to { transform: scale(1); opacity: 1; } -} |
