返回首页

给网页添加一个点击音效

鼠标网页任何地方的时候播放音效

107800 飞飞免费API接口
接口地址
https://ffapi.cn/int/v1/click.sound
返回格式
javascript
请求方式
get
请求示例
https://ffapi.cn/int/v1/click.sound?act=demo

参数说明

名称 必填 类型 说明
actstring输出类型(demo=演示、留空=音效代码)

返回数据

直接将下面两行JS放入 head 中
<script src="https://lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.5.1/jquery.min.js"></script>
<script src="https://ffapi.cn/int/v1/click.sound" data-name="www.ffapi.cn"></script>

示例代码

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>给网页添加一个点击音效</title>
</head>
<body style="background-color: black;">
<div style="display: flex;justify-content: center;height: 90vh;align-items: center;">
<a href="https://ffapi.cn/" style="text-decoration: none;"><p style="color:#ccc;font-size: 3em;">欢迎访问</p> </a>
</div>
</body>
<script src="//lf26-cdn-tos.bytecdntp.com/cdn/expire-1-M/jquery/3.5.1/jquery.min.js"></script>
<script src="https://ffapi.cn/int/v1/click.sound">
</script>
</html>