


This time I will bring you a custom implementation of an H5 player that can play, pause, progress drag, volume control, and full screen. A custom implementation of an H5 player that can play, pause, progress drag, volume control, and full screen. Notes What are the following? Let’s take a look at actual cases.
This sharing is a custom video player based on HTML5 tags. It implements functions such as playback pause, progress dragging, volume control and full screen.
Effect preview
Click here to view the source code warehouse.
Core Idea
I believe that there must be some children's shoes who have never been exposed to making custom players, and their understanding of tags will stop here.
<video> <source></source> </video>
After the controls attribute is set, a control bar that comes with the browser will be displayed in the interface. If there are no requirements for the UI, its built-in controller can already meet most needs. Of course, if that were the case, you wouldn’t see this sharing =. =
Hide the control bar and simulate
The key to implementing a player with custom functions is that we do not use the native controller and hide it , in the same position below, simulate the required style through html and css, and at the same time use js to call the interface functions and properties exposed to us by the vedio tag, and detect the user's operating behavior to synchronously simulate the response of the UI and video playback data Variety.
Usage of several core functions and attributes
myVid=document.getElementById("video1"); //控制视频开关 myVid.play() //播放 myVid.pause() //暂停 //模拟视频进度条 myVid.currentTime=5; //返回或设定当前视频播放位置 myVid.duration // 返回视频总长度 //模拟视频音量 myVid.volume //音量 //获取视频当前状态后判断何时从loading切换为播放 myVid.readyState //0 = HAVE_NOTHING - 没有关于音频/视频是否就绪的信息 //1 = HAVE_METADATA - 关于音频/视频就绪的元数据 //2 = HAVE_CURRENT_DATA - 关于当前播放位置的数据是可用的,但没有足够的数据来播放下一帧/毫秒 //3 = HAVE_FUTURE_DATA - 当前及至少下一帧的数据是可用的 //4 = HAVE_ENOUGH_DATA - 可用数据足以开始播放
The key point in all implementations is the simulation of the progress bar. The currentTime and duration attributes in the video tag are used. Through the ratio of the current playback time to the total playback time, the position of the progress bar relative to the total length can be calculated. At the same time, the last length set by the user by dragging the progress bar can also be used to reversely calculate the position where the video should be played at this time.
Drag and drop code ideas
//核心代码示例 var dragDis = 0 var processWidth = xxx //拖拽条总长 $('body').mousedown(function(e) { startX = e.clientX dragDis = startX - leftInit //leftInit为拖拽条起始点巨屏幕左侧的距离 dragTarget.css({ //拖拽按钮 left: dragDis }) dragProcess.css({ //进度条(蓝色进度条) width: dragDis }) // 令进度条和拖拽按钮渲染在同一位置 videoSource.pause() }).mousemove(function(e) { moveX = e.clientX disX = moveX - startX var left = dragDis + disX if(left > processWidth) { left = processWidth } else if(left <p style="text-align: left;">Similarly, the volume control is basically the same as the above behavior. Therefore, in the source code, the author judges the volume and progress parts through different elements. Drag and drop control of progress or volume. </p><p style="text-align: left;"><strong>Control the loading animation before playback by querying the video stream status</strong></p><pre class="brush:php;toolbar:false">function ifState() { var state = videoSource.readyState if(state === 4) { //状态为4即可播放 videoPlayer() } else { $('.play-sym-wrapper').remove() $('body').append('<p><img class="play-sym lazy" src="/static/imghwm/default1.png" data-src="./images/loading.gif" alt="Customized implementation of H5 player that can play pause, progress drag, volume control and full screen" ></p>') //添加loading动画 setTimeout(ifState, 10) } } setTimeout(ifState, 10)
The core control part has been finished. Interested students can click to play in the html of the source code. , which is forced to have many fragmentary needs, such as clicking to pause, saving volume, etc. The basic functions of the entire video player are fairly well implemented.
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!
Recommended reading:
How to solve the problem that the video tag in H5 cannot play mp4 files
The newly added tags in html5 are Which
The above is the detailed content of Customized implementation of H5 player that can play pause, progress drag, volume control and full screen. For more information, please follow other related articles on the PHP Chinese website!

html5的div元素默认一行不可以放两个。div是一个块级元素,一个元素会独占一行,两个div默认无法在同一行显示;但可以通过给div元素添加“display:inline;”样式,将其转为行内元素,就可以实现多个div在同一行显示了。

html5中列表和表格的区别:1、表格主要是用于显示数据的,而列表主要是用于给数据进行布局;2、表格是使用table标签配合tr、td、th等标签进行定义的,列表是利用li标签配合ol、ul等标签进行定义的。

固定方法:1、使用header标签定义文档头部内容,并添加“position:fixed;top:0;”样式让其固定不动;2、使用footer标签定义尾部内容,并添加“position: fixed;bottom: 0;”样式让其固定不动。

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

html5中不支持的标签有:1、acronym,用于定义首字母缩写,可用abbr替代;2、basefont,可利用css样式替代;3、applet,可用object替代;4、dir,定义目录列表,可用ul替代;5、big,定义大号文本等等。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。

因为html5不基于SGML(标准通用置标语言),不需要对DTD进行引用,但是需要doctype来规范浏览器的行为,也即按照正常的方式来运行,因此html5只需要写doctype即可。“!DOCTYPE”是一种标准通用标记语言的文档类型声明,用于告诉浏览器编写页面所用的标记的版本。


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

SublimeText3 Chinese version
Chinese version, very easy to use

WebStorm Mac version
Useful JavaScript development tools

Zend Studio 13.0.1
Powerful PHP integrated development environment

SublimeText3 Linux new version
SublimeText3 Linux latest version

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.
