Examples of code I've written in PHP, Javascript, SCSS, etc.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- @use "sass:map";
- @use "sass:color";
-
- @keyframes fade-in-translate {
- from {
- transform: translateY(-50px);
- opacity: 0;
- }
-
- to {
- transform: translateY(0);
- opacity: 1;
- }
- }
-
- @keyframes fade-in {
- from {
- opacity: 0;
- }
-
- to {
- opacity: 1;
- }
- }
-
- .fade-in {
- animation: fade-in-translate 0.5s 0.5s both;
- }
-
- .fade-in-2 {
- animation: fade-in-translate 0.7s 0.7s both;
- }
-
- .fade-in-3 {
- animation: fade-in 0.7s 0.7s both;
- }
|