.color-animateion { background-size: cover; background-repeat: no-repeat; background-attachment: fixed; background-position: center; animation: background-overlay-animation 1s ease-in-out infinite; } @keyframes background-overlay-animation { 0% { background-image: linear-gradient( 4deg, rgba(255, 78, 36, 0.3) 50%, rgba(255, 78, 36, 0.3) 100% ), url('./snow.jpg'); } 25% { background-image: linear-gradient( 4deg, rgba(213, 49, 127, 0.3) 50%, rgba(213, 49, 127, 0.3) 100% ), url('./snow.jpg'); } 50% { background-image: linear-gradient( 4deg, rgba(36, 182, 255, 0.3) 50%, rgba(36, 182, 255, 1) 100% ), url('./snow.jpg'); } 100% { background-image: linear-gradient( 4deg, rgba(0, 255, 254, 0.3) 50%, rgba(0, 255, 254, 0.3) 100% ), url('./snow.jpg'); } }
|