Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,21 @@
#status {
font-size: 12px;
color: #444; /* Quasi invisibile */
background: transparent;
border: 0;
padding: 0;
cursor: inherit;
}

/* Rende il "pulsante" trasparente mentre è premuto */
#status:active {
opacity: 0.2;
}
</style>
</head>
<body onclick="forcePlay()">

<div id="status">Touch to Start</div>
<button id="status" type="button">Touch to Start</button>

<audio id="media" loop autoplay playsinline>
<source src="data:audio/wav;base64,UklGRiIAAABXQVZFZm10IBIAAAABAAEAQB8AAEAfAAABAAgAAABkYXRh////AA==" type="audio/wav">
Expand Down