Skip to content

Instantly share code, notes, and snippets.

@Nydhal
Last active July 6, 2018 00:40
Show Gist options
  • Select an option

  • Save Nydhal/c04e15a0e469656889e11de6bdc028ac to your computer and use it in GitHub Desktop.

Select an option

Save Nydhal/c04e15a0e469656889e11de6bdc028ac to your computer and use it in GitHub Desktop.
Stylized HTML5 audio player
<!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