Last active
July 6, 2018 00:40
-
-
Save Nydhal/c04e15a0e469656889e11de6bdc028ac to your computer and use it in GitHub Desktop.
Stylized HTML5 audio player
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
| <!DOCTYPE html><html><body> | |
| <style> audio { filter: | |
| sepia(100%) | |
| saturate(220%) | |
| grayscale(0) | |
| contrast(60%) | |
| hue-rotate(50deg) | |
| invert(100%) | |
| drop-shadow(0px 0px 0px #ff0000); | |
| </style> | |
| <audio controls volume="0.1"> | |
| <source src="horse.ogg" type="audio/ogg"> | |
| </audio> | |
| </body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment