Files
plugin-preview/ui/index.html
2022-06-26 16:45:04 +08:00

24 lines
565 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>M7s Preview 预览</title>
</head>
<body>
<a href="javascript:void 0" id="unmute">解除静音</a>
<script src="jessibuca-pro.js"></script>
<script>
(function(){
var ctx = new AudioContext();
if(ctx.state == "running"){
document.getElementById("unmute").style.display = "none";
} else {
ctx.onstatechange = ()=> {
if(ctx.state == 'running'){
document.getElementById("unmute").style.display = "none";
}
}}
})()
</script>
</body>
</html>