21 lines
468 B
HTML
21 lines
468 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style type='text/css'>
|
|
button {
|
|
--audio-src: url('click.ogg');
|
|
}
|
|
button:active {
|
|
--audio-state: playing;
|
|
}
|
|
</style>
|
|
<script type='text/javascript' src='//kettek.net/s/css-audio/css-audio-LATEST.min.js'></script>
|
|
<script type='text/javascript'>
|
|
window.addEventListener('load', function() { KTK.CSSA.init(); })
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<button>click</button>
|
|
</body>
|
|
</html>
|