How to implement music playback control bar in js
Preface
html5 provides the audio tag, which implements audio playback. I have always been interested in audio and video playback, and have always wanted to implement one myself. The audio and video playback module is also the original intention of writing this article. I recently spent some time implementing the Audio playback control bar. From the implementation of this small module, I also learned knowledge that I had not been exposed to before.
Audio implementation ideas
The audio style provided natively by the browser is relatively simple and not very good-looking. The natively provided styles are as follows:
Self-implementation The music playback control bar has the following effect:
The music playback control bar implements the following functions:
Music playback (the most basic)
Manual switching and automatic switching of multiple music to achieve loop playback
Click on the progress bar to change the playback progress
Drag the progress bar to change the playback progress
Click to change the volume
Drag the volume to change
Specific implementation effects:
The implementation of specific functions will be detailed below. The music playback control progress bar implemented is mainly for learning and use, without considering compatibility. The following mainly explains each The implementation idea of each function:
Overall
The bottom layer of control of the entire music playback is still implemented using the browser audio tag, and the audio api is called to realize the overall function. The following is the html of the current control bar Structure:
<p class="audio"> <audio></audio> <p class="audio-controller"> <span class="audio-prev"></span> <span class="audio-state"></span> <span class="audio-next"></span> </p> <p class="audio-bar"> <span class="audio-time-current"></span> <p class="audio-progress"> <p> <p></p> <p></p> </p> </p> <span class="audio-time-duration"></span> </p> <p class="audio-volume"> <span class="audio-volume-icon"></span> <p class="audio-volume-adjust"> <p> <p></p> <p></p> </p> </p> </p></p>
audio-controller: It is the area that controls playback and switching songs
Audio-bar: It is the area for time and song progress
audio-volume: It is the volume adjustment area
Playback area
This area implements music playback, pause, and switching (previous song, next song), this part actually does not What needs to be explained is actually play() and pause() in the audio api to realize play and pause. Switching between songs is just changing the array elements and modifying the src address.
Progress area
This area is the core part of the entire module. The main functional points of this area are:
Progress effect implementation
Sliding effect implementation
First of all, the progress is realized. The idea is:
The progress bar has two Each p consists of:
// 最外层作为How to implement music playback control bar in js暗的长度区域<p> // 最内层是实际表示进度 <p></p> </p>
When the progress bar is clicked, the relative position of the mouse click on the point is obtained. The offset in the x-axis direction of the nearest parent element
The offset is the actual width of the inner p, set the background color
The position of the slider is to set the value of left, but the value of left is: offset - slider width/2
The implementation of sliding is written in this module The drag-and-drop API in HTML5 is not used, but mousedown, mousemove, and mouseup are used to implement it. The specific implementation code:
// 滑动How to implement music playback control bar in js bar.addEventListener('mousedown', function(e) { e.stopPropagation(); // 获取滑块被选择时相对文档的初始X轴值 options.clientX = e.clientX; // 偏移量 options.left = this.offsetLeft; options.max = bgNode.offsetWidth - this.offsetWidth / 2; options.isDrag = true; }); document.addEventListener('mousemove', function(e) { e.stopPropagation(); if (options.isDrag) { let currentClientX = e.clientX, left = options.left, max = options.max, initClientX = options.clientX, barHalfWidth = bar.offsetWidth / 2, fgWidth = 0, // 设置要滑动到的位置点(x轴方向偏移量) to = Math.max(0, Math.min(max, left + (currentClientX - initClientX))); bar.style.left = to + 'px'; if (to > barHalfWidth) { fgWidth = to + barHalfWidth; } fgNode.style.width = Math.max(0, fgWidth) + 'px'; options.offsetX = Math.max(0, fgWidth); } }); bgNode.parentNode.addEventListener('mouseup', function(e) { e.stopPropagation(); if (options.isDrag) { // 绘制此时的进度 tools.timeUpdateOrVolumeUpdate(options.offsetX, type); options.isDrag = false; } });
Simply put:
Get when mousemove The current X-axis position of the mouse in the document - initial position + initial offset of the element, dynamically changing the value of left to achieve
The progress is actually displayed by the width of p, dynamically Change the value of width and the left value of the slider to achieve the progress effect
What needs to be noted here is:
The difference between the total width of the current progress bar and the total audio time Proportional relationship, so as to calculate the length of the progress corresponding to different audio time points, this is the basis
In fact, this is also very easy to calculate:
Proportion: width /duration
Specify the width of the time: (width / duration) * currentTime
The implementation of volume adjustment is similar to the progress, mainly changing the implementation of volume.
Let’s talk about the problems in this module:
The slider effect is sometimes not natural and smooth enough
Audio files The processing of time is not good enough
The progress part was not very good at the beginning
The code will be uploaded to my Github, and this module will need to be worked on in the future Improve.
The above is the detailed content of How to implement music playback control bar in js. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



How to implement dual WeChat login on Huawei mobile phones? With the rise of social media, WeChat has become one of the indispensable communication tools in people's daily lives. However, many people may encounter a problem: logging into multiple WeChat accounts at the same time on the same mobile phone. For Huawei mobile phone users, it is not difficult to achieve dual WeChat login. This article will introduce how to achieve dual WeChat login on Huawei mobile phones. First of all, the EMUI system that comes with Huawei mobile phones provides a very convenient function - dual application opening. Through the application dual opening function, users can simultaneously

The programming language PHP is a powerful tool for web development, capable of supporting a variety of different programming logics and algorithms. Among them, implementing the Fibonacci sequence is a common and classic programming problem. In this article, we will introduce how to use the PHP programming language to implement the Fibonacci sequence, and attach specific code examples. The Fibonacci sequence is a mathematical sequence defined as follows: the first and second elements of the sequence are 1, and starting from the third element, the value of each element is equal to the sum of the previous two elements. The first few elements of the sequence

How to implement the WeChat clone function on Huawei mobile phones With the popularity of social software and people's increasing emphasis on privacy and security, the WeChat clone function has gradually become the focus of people's attention. The WeChat clone function can help users log in to multiple WeChat accounts on the same mobile phone at the same time, making it easier to manage and use. It is not difficult to implement the WeChat clone function on Huawei mobile phones. You only need to follow the following steps. Step 1: Make sure that the mobile phone system version and WeChat version meet the requirements. First, make sure that your Huawei mobile phone system version has been updated to the latest version, as well as the WeChat App.

PHP Game Requirements Implementation Guide With the popularity and development of the Internet, the web game market is becoming more and more popular. Many developers hope to use the PHP language to develop their own web games, and implementing game requirements is a key step. This article will introduce how to use PHP language to implement common game requirements and provide specific code examples. 1. Create game characters In web games, game characters are a very important element. We need to define the attributes of the game character, such as name, level, experience value, etc., and provide methods to operate these

In today's software development field, Golang (Go language), as an efficient, concise and highly concurrency programming language, is increasingly favored by developers. Its rich standard library and efficient concurrency features make it a high-profile choice in the field of game development. This article will explore how to use Golang for game development and demonstrate its powerful possibilities through specific code examples. 1. Golang’s advantages in game development. As a statically typed language, Golang is used in building large-scale game systems.

Implementing exact division operations in Golang is a common need, especially in scenarios involving financial calculations or other scenarios that require high-precision calculations. Golang's built-in division operator "/" is calculated for floating point numbers, and sometimes there is a problem of precision loss. In order to solve this problem, we can use third-party libraries or custom functions to implement exact division operations. A common approach is to use the Rat type from the math/big package, which provides a representation of fractions and can be used to implement exact division operations.

Imagine an iPhone without a functioning Control Center. You can't, right? If the buttons on the Control Center don't work properly, you won't be able to use your iPhone properly. The main idea of Control Center is to easily access certain features directly from anywhere on your phone. In this case, these solutions will help to resolve the issue on your phone. Fix 1 – Use a Cloth to Clean Your Phone Sometimes the upper part of the display gets dirty from regular use. This may cause the Control Center to not function properly. Step 1 – Take a soft, clean microfiber cloth and clean the top half of your iPhone screen. You can also use any screen cleaning solution. Step 2 – Make sure to remove any dust, oil, or anything else from your phone’s display. After clearing phone screen

I'm really sorry that I can't provide real-time programming guidance, but I can provide you with a code example to give you a better understanding of how to use PHP to implement SaaS. The following is an article within 1,500 words, titled "Using PHP to implement SaaS: A comprehensive analysis." In today's information age, SaaS (Software as a Service) has become the mainstream way for enterprises and individuals to use software. It provides a more flexible and convenient way to access software. With SaaS, users don’t need to be on-premises
