-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed loading multiple pages inside transaction/list via scroll * added animations for all lists * added animations for settings * added animation for big save button * added dashboard animation * added custom app-loading component * updated bootstrap to latest
- Loading branch information
1 parent
a172601
commit 4c704ff
Showing
32 changed files
with
924 additions
and
505 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
@keyframes zoom-fade-in { | ||
0% { | ||
transform: scale(0.5); | ||
opacity: 0; | ||
} | ||
100% { | ||
transform: scale(1); | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes zoom-fade-out { | ||
0% { | ||
transform: scale(1); | ||
opacity: 1; | ||
} | ||
100% { | ||
transform: scale(0.5); | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.zoom-fade-enter-active, | ||
.zoom-fade-leave-active { | ||
animation-duration: 0.6s; | ||
/*animation-timing-function: ease-in-out;*/ | ||
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); | ||
animation-fill-mode: both; | ||
} | ||
|
||
.zoom-fade-enter-active { | ||
animation-name: zoom-fade-in; | ||
} | ||
|
||
.zoom-fade-leave-active { | ||
animation-name: zoom-fade-out; | ||
} | ||
|
||
/*-----------------*/ | ||
|
||
@keyframes fade-in { | ||
0% { | ||
opacity: 0; | ||
} | ||
100% { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes fade-out { | ||
0% { | ||
opacity: 1; | ||
} | ||
100% { | ||
opacity: 0; | ||
} | ||
} | ||
|
||
.fade-enter-active, | ||
.fade-leave-active { | ||
animation-duration: 0.25s; | ||
/*animation-timing-function: ease-in-out;*/ | ||
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1); | ||
animation-fill-mode: both; | ||
} | ||
|
||
.fade-enter-active { | ||
animation-name: fade-in; | ||
} | ||
|
||
.fade-leave-active { | ||
animation-name: fade-out; | ||
} | ||
|
||
/*--------------*/ | ||
|
||
.animate-rotate-infinite { | ||
animation: apply-rotation 1s infinite linear; | ||
} | ||
|
||
@keyframes apply-rotation { | ||
100% { | ||
transform: rotate(-1turn); | ||
} | ||
} | ||
|
||
|
||
/*-----------------*/ | ||
|
||
@keyframes jump { | ||
0%, 100% { | ||
transform: translate(-50%, -50%) translateY(0); | ||
} | ||
50% { | ||
transform: translate(-50%, -50%) translateY(-20px); /* Adjust this value for jump height */ | ||
} | ||
} | ||
|
||
.jump { | ||
animation: jump 2s ease-in-out infinite; | ||
} | ||
|
||
|
||
/*------------------*/ | ||
|
||
|
||
.fade-slide-enter-active, .fade-slide-leave-active { | ||
transition: all 0.5s ease; | ||
} | ||
|
||
.fade-slide-enter, .fade-slide-leave-to /* .fade-slide-leave-active in <2.1.8 */ { | ||
opacity: 0; | ||
} | ||
|
||
.fade-slide-enter { | ||
transform: translateY(-30px); | ||
} | ||
|
||
.fade-slide-leave-to { | ||
transform: translateY(30px); | ||
} |
Oops, something went wrong.