js to realize web music player

js to realize web music player

This article shares simple HTML and music player production code for your reference. The specific content is as follows

First , find the picture resources and music resources and put them into the img folder

The second step is to arrange the page layout

The third step is to write js code

When you copy and run the code, you need to change the name of the image resources and music resources.

Run to switch the pictures, the effect is as shown below:

The code is as follows:

Hope you like it! ! !

<!DOCTYPE html>
<html>
 <head>
  <meta charset="utf-8" />
  <title></title>
  <style type="text/css">
  * {
   margin: 0;
   padding: 0;
  }
  body{
   background-color:#596653;
  }
     .yinyue {
   width: 300px;
   height: 300px;
   border: 1px solid aqua;
   margin:50px 500px;
  }
  
  
  .bofang {
   width: 100px;
   height: 100px;
   background-color: aqua;
  }
  .muted ,.play,.prefer,.next{
   width: 60px;
   height: 30px;
   background-color: aquamarine;
   text-align: center;
   line-height: 30px;
  }
      #kongzhi ,#shangxia
    margin: 10px 530px;
   }
   
  
  
  </style>
 </head>
 <body>
  
  <div id="content">
   <img class="yinyue" src="img/yinyue1.jpg" >
   <audio src="img/yinyue1.mp3" >
   </audio>
   <div id="anniu">
    <div id="kongzhi">
     <button class="muted" type="button" >Mute</button>
     <img class="bofang" src="img/play.png" >
     <button class="play" type="button" >Play</button>
    </div>
    <div id="shangxia">
     <button class="prefer" type="button">Previous song</button>
     <span>Volume</span>
     <input class="volume" type="range" min="0" max="1"step="0.01" />
     <button class="next" type="button">Next song</button>
    </div>
    
    
   </div>
   
  </div>
  
  <script type="text/javascript">
   var index=0;
   
   var srcs=['img/yinyue1.mp3','img/yinyue2.mp3','img/yinyue3.mp3'];
            var imgArr=['img/yinyue1.jpg','img/yinyue2.jpg','img/yinyue3.jpg'];
   var audio = document.querySelector("audio");
   var playBtn = document.querySelector(".play");
   var mutedBtn = document.querySelector(".muted");
   var volumeBtn = document.querySelector(".volume");
   var bofang = document.querySelector('.bofang');
   var prefer = document.querySelector(".prefer");
   var nextBtn = document.querySelector(".next");
   var yinyue = document.querySelector(".yinyue")
   
   
   playBtn.onclick=function(){
    if(audio.paused===true){
     audio.play();
     bofang.src='img/play.png';
     audio.value="play";
     
    }else{
     audio.pause();
     bofang.src = 'img/pause.png';
     audio.value="pause";
    }
    
   }
   mutedBtn.onclick=function(){
    if(audio.muted==true){
     audio.muted=false;
    }
    else{
     audio.muted=true;
     bofang.src = 'img/silent.png';
    }
   }
   volumeBtn.onchange=function(){
        audio.volume=volumnBtn.value;
   }
   prefer.onclick=function(){
    index--;
    if(index<0){
     index=srcs.length-1;
    }
    audio.srcs = srcs[index];
    yinyue.src=imgArr[index];
    
   }
   
   nextBtn.onclick=function(){
    index++;
    if(index==srcs.length){
     index=0;
    }
    audio.src = srcs[index];
    yinyue.src=imgArr[index];
   }
  </script>
 </body>
</html>

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Vue.js implements music player
  • How to download music from Tik Tok at once using Python
  • Use Python web crawler to crawl the code of major music reviews
  • Playing background music in java
  • Make a music downloader with python
  • Android implements music video playback
  • A super cool music player made by myself in python

<<:  Install zip and unzip command functions under Linux and CentOS (server)

>>:  Are you still Select *?

Recommend

Implementing carousel with native JavaScript

This article shares the specific code for impleme...

How to use LibreOffice to convert document formats under CentOS

Project requirements require some preprocessing o...

Super detailed tutorial to implement Vue bottom navigation bar TabBar

Table of contents Project Introduction: Project D...

25 Examples of Using Circular Elements in Web Design

Today, this post lists some great examples of circ...

MySQL database index order by sorting detailed explanation

Table of contents The cause of the incident Anato...

Detailed explanation of fs module and Path module methods in Node.js

Overview: The filesystem module is a simple wrapp...

Network management and network isolation implementation of Docker containers

1. Docker network management 1. Docker container ...

Detailed explanation of how to detect and prevent JavaScript infinite loops

Table of contents Preface Fix infinite loop in fo...

Installation and configuration of MySQL 5.7.17 free installation version

MYSQL version: MySQL Community Server 5.7.17, ins...

How to install and deploy zabbix 5.0 for nginx

Table of contents Experimental environment Instal...

Advantages and disadvantages of conditional comments in IE

IE's conditional comments are a proprietary (...

Implementation of MySQL select in subquery optimization

The following demonstration is based on MySQL ver...

Several methods to solve the problem of MySQL fuzzy query index failure

When we use the like % wildcard, we often encount...