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.
 
 
 
 
 
 

38 lines
427 B

  1. @use "sass:map";
  2. @use "sass:color";
  3. @keyframes fade-in-translate {
  4. from {
  5. transform: translateY(-50px);
  6. opacity: 0;
  7. }
  8. to {
  9. transform: translateY(0);
  10. opacity: 1;
  11. }
  12. }
  13. @keyframes fade-in {
  14. from {
  15. opacity: 0;
  16. }
  17. to {
  18. opacity: 1;
  19. }
  20. }
  21. .fade-in {
  22. animation: fade-in-translate 0.5s 0.5s both;
  23. }
  24. .fade-in-2 {
  25. animation: fade-in-translate 0.7s 0.7s both;
  26. }
  27. .fade-in-3 {
  28. animation: fade-in 0.7s 0.7s both;
  29. }