In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-07 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/01 Report--
Xiaobian to share with you how to use HTML5 to achieve the use of buttons to control the background music switch, I believe most people do not know how to share this article for your reference, I hope you have a lot of harvest after reading this article, let's go to understand it together!
We sometimes add background music to the page, allowing users to turn on and off background music themselves, especially multimedia pages based on mobile html5, HTML5 audio tag can get audio playback status, and background music can be turned off and on by touching buttons.
Create an HTML5 page, place tags, set audio file sources, set loop playback. Prepare two pictures, respectively, indicating that the background music on and pause two states, you can click.
Your browser does not support frames.
Javascript
We called the javascript script, playPause() function when we clicked the switch picture button. Function to determine the audio playback status, if it has stopped (paused) then call.play() to continue playing, if it is in the playback state, then immediately pause playback.pause(), two state switch timely update button picture, please see the code:
JavaScript Code Copy content to clipboard
function playPause() {
var music = document.getElementById('music2');
var music_btn = document.getElementById('music_btn2');
if (music.paused){
music.play();
music_btn.src = 'play.gif';
}
else{
music.pause();
music_btn.src = 'pause.gif';
}
}
If you use jQuery code, you can write:
Your browser does not support frames.
$("#audio_btn").click(function(){
var music = document.getElementById("music");
if(music.paused){
music.play();
$("#music_btn").attr("src","play.gif");
}else{
music.pause();
$("#music_btn").attr("src","pause.gif");
}
});
The above is "how to use HTML5 to achieve the use of buttons to control background music switch" all the content of this article, thank you for reading! I believe that everyone has a certain understanding, hope to share the content to help everyone, if you still want to learn more knowledge, welcome to pay attention to the industry information channel!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.