Home > Web Front-end > JS Tutorial > body text

How to add background music to button using JS

小云云
Release: 2018-01-15 13:30:10
Original
2843 people have browsed it

How to add background music to the button? This article mainly introduces the JS implementation button to add background music sample code. Friends who need it can refer to it. I hope it can help everyone.

1-Code


<html>
<head>
  <meta charset="utf-8">
  <title>js实现按键声</title>
</head>
<body>
  <ul>
    <li>
      <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >主页</a>
    </li>
    <li>
      <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >详情</a>
    </li>
    <li>
      <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >列表</a>
    </li>
  </ul>
  <script language="javascript">
  $(function() {
    $(&#39;menu-list&#39;).click(function() {
      $(&#39;btn-bgm&#39;).remove();
      $(&#39;body&#39;).append(&#39;<embed src="button.wav" autostart="true" hidden="true" loop="false" class = "btn-bgm">&#39;);
    });
  });
  </script>
</body>
</html>
Copy after login

 2-Description

Bind the node in advance Define the event and click to add background music.

Related recommendations:

About the implementation of the automatic playback effect of background music in h5

Set background music for the web page_html/css_WEB-ITnose

php page Add background music to control stop/play

The above is the detailed content of How to add background music to button using JS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!