Skip to content

Commit

Permalink
πŸ’„ adjust newspaper animation
Browse files Browse the repository at this point in the history
  • Loading branch information
krmax44 committed Dec 15, 2023
1 parent 5e5a827 commit 838cd88
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions frontend/styles/misc.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,20 +48,20 @@
opacity: 1;
transform: scale(1) rotate(10deg);

animation-duration: 1s;
animation-duration: 0.7s;
animation-name: newspaper-spin;
animation-timing-function: linear;
animation-timing-function: ease-out;
animation-iteration-count: 1;
}

@keyframes newspaper-spin {
0%{
opacity: 0.2;
transform: scale(0.1) rotate(0deg);
0% {
opacity: 0.2;
transform: scale(0.1) rotate(0deg);
}
100%{
opacity: 1;
transform: scale(1) rotate(1090deg);
100% {
opacity: 1;
transform: scale(1) rotate(730deg);
}
}

Expand Down

0 comments on commit 838cd88

Please sign in to comment.