css animation linear
animation-timing-function: linear;
Css gradient animations
Here a codePen with cool animations:
https://codepen.io/DevLorenzo/pen/ExgpvJM
animate css gradient
/* Animate Gradient using CSS Variables */
@property --pc { /* purple/coral */
syntax: '<percentage>';
inherits: false;
initial-value: 30%;
}
@property --co { /* coral/orange */
syntax: '<percentage>';
inherits: false;
initial-value: 100%;
}
.gradient {
--pc: 0%;
--co: 100%;
width: 100vw;
height: 100vh;
transition: --pc 3s, --co 3s;
background: linear-gradient(30deg, purple var(--pc), coral var(--co), orange);
}
.gradient:hover {
--pc: -100%;
--co: 0%;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us