-
Notifications
You must be signed in to change notification settings - Fork 1
Css Test page
Raymond Lei(雷菩宇) edited this page Jun 16, 2024
·
1 revision
.custom-heading { animation: fadeIn 2s ease-in-out; }
.custom-paragraph { animation: slideInLeft 2s ease-in-out; animation-delay: 1s; }
@keyframes fadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
This is an example of CSS animation.
@keyframes slideInLeft { 0% { transform: translateX(-100%); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
123