Created
February 11, 2018 02:43
-
-
Save jokemmy/de8a1121390f9159674f42e74b1490d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
text-align: center; | |
} | |
img { | |
max-width: 100%; | |
width: 600px; | |
} | |
img { | |
-webkit-animation: haunted 3s infinite; | |
animation: haunted 3s infinite; | |
} | |
@keyframes haunted { | |
0% { | |
-webkit-filter: brightness(20%); | |
filter: brightness(20%); | |
} | |
48% { | |
-webkit-filter: brightness(20%); | |
filter: brightness(20%); | |
} | |
50% { | |
-webkit-filter: sepia(1) contrast(2) brightness(200%); | |
filter: sepia(1) contrast(2) brightness(200%); | |
} | |
60% { | |
-webkit-filter: sepia(1) contrast(2) brightness(200%); | |
filter: sepia(1) contrast(2) brightness(200%); | |
} | |
62% { | |
-webkit-filter: brightness(20%); | |
filter: brightness(20%); | |
} | |
96% { | |
-webkit-filter: brightness(20%); | |
filter: brightness(20%); | |
} | |
96% { | |
-webkit-filter: brightness(400%); | |
filter: brightness(400%); | |
} | |
} | |
//<img src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/123941/foggy-545838_960_720.jpg"> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment