Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <style>
- body {
- background: linear-gradient(to right, red, blue, green, red);
- animation: flashing-background 3s infinite;
- }
- @keyframes flashing-background {
- 0% {
- background-color: red;
- }
- 25% {
- background-color: blue;
- }
- 50% {
- background-color: green;
- }
- 75% {
- background-color: red;
- }
- 100% {
- background-color: red;
- }
- }
- @keyframes flashing-font {
- 0% {
- color: red;
- }
- 50% {
- color: red;
- }
- 100% {
- color: red;
- }
- }
- button {
- animation: flashing-buttons 3s infinite;
- }
- @keyframes flashing-buttons {
- 0% {
- background-color: red;
- }
- 25% {
- background-color: blue;
- }
- 50% {
- background-color: yellow;
- }
- 75% {
- background-color: green;
- }
- 100% {
- background-color: red;
- }
- }
- </style>
Advertisement
Add Comment
Please, Sign In to add comment