Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- .rainbow {
- /* Font options */
- font-family: 'Oswald', sans-serif;
- text-shadow: 2px 2px 4px #000000;
- font-size: 1.8rem;
- /* Chrome, Safari, Opera */
- -webkit-animation: rainbow 5s infinite;
- /* Internet Explorer */
- -ms-animation: rainbow 5s infinite;
- /* Standar Syntax */
- animation: rainbow 5s infinite;
- }
- /* Chrome, Safari, Opera */
- @-webkit-keyframes rainbow{
- 0%{color: orange;}
- 10%{color: purple;}
- 20%{color: red;}
- 30%{color: CadetBlue;}
- 40%{color: yellow;}
- 50%{color: coral;}
- 60%{color: green;}
- 70%{color: cyan;}
- 80%{color: DeepPink;}
- 90%{color: DodgerBlue;}
- 100%{color: orange;}
- }
- /* Internet Explorer */
- @-ms-keyframes rainbow{
- 0%{color: orange;}
- 10%{color: purple;}
- 20%{color: red;}
- 30%{color: CadetBlue;}
- 40%{color: yellow;}
- 50%{color: coral;}
- 60%{color: green;}
- 70%{color: cyan;}
- 80%{color: DeepPink;}
- 90%{color: DodgerBlue;}
- 100%{color: orange;}
- }
- /* Standar Syntax */
- @keyframes rainbow{
- 0%{color: orange;}
- 10%{color: purple;}
- 20%{color: red;}
- 30%{color: CadetBlue;}
- 40%{color: yellow;}
- 50%{color: coral;}
- 60%{color: green;}
- 70%{color: cyan;}
- 80%{color: DeepPink;}
- 90%{color: DodgerBlue;}
- 100%{color: orange;}
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement