当前位置:网站首页>多媒体元素,音频、视频
多媒体元素,音频、视频
2022-06-26 02:49:00 【小菜鸟码住】
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>多媒体元素</title>
<style>
*{
padding: 0;
margin: 0;
}
#music{
position: fixed;
right: 0;
top: 0;
}
</style>
</head>
<body>
<!-- 行内元素/块级元素 -->
<img id="music" src="img/musicBtn.png" alt="">
<div>
<audio id="aud" autoplay src="img/img/2.ogg" loop></audio>
<button id="btn">暂停</button>
</div>
<video autoplay src="img/img/1.ogg" controls></video>
<script>
var btn = document.getElementById('btn');
var aud = document.getElementById('aud');
var music = document.getElementById('music');
music.onclick = function(){
if(aud.paused){
aud.play();
this.src = 'img/musicBtn.png';
}else{
aud.pause();
this.src = 'img/musicBtnOff.png';
}
}
var flag = true;//设置一个标志;
btn.onclick = function(){
if(flag){
aud.pause();
btn.innerHTML = '开始';
}else{
aud.play();
btn.innerHTML = '暂停';
}
flag = !flag;
}
</script>
</body>
</html>
边栏推荐
- 【读点论文】FBNetV3: Joint Architecture-Recipe Search using Predictor Pretraining 网络结构和超参数全当训练参数给训练了
- jupyter notebook的插件安装以及快捷键
- 应届毕业生谈毕业的故事
- On virtual memory and oom in project development
- Camtasia 2022 nouvelle vidéo d'ordinateur d'enregistrement ultra - clair
- ArrayList # sublist these four holes, you get caught accidentally
- 虫子 拷贝构造 运算符重载
- stm32Cubemx:看门狗------独立看门狗和窗口看门狗
- Is it safe to open an account in flush online? How to open a brokerage account online
- Learn from Taiji makers - mqtt (V) publish, subscribe and unsubscribe
猜你喜欢
【解决】CMake was unable to find a build program corresponding to “Unix Makefiles“.
Arthas(阿尔萨斯) 能为你做什么?
【解决】联想拯救者vmware启动虚拟机蓝屏重启问题
Redis configuration and optimization of NoSQL
[solution] the blue screen restart problem of the virtual machine started by the VMware of Lenovo Savior
How to prompt
Utonmos: digital collections help the inheritance of Chinese culture and the development of digital technology
2021-08-04
The role of children's programming in promoting traditional disciplines in China
【论文笔记】Deep Reinforcement Learning Control of Hand-Eye Coordination with a Software Retina
随机推荐
ArrayList#subList这四个坑,一不小心就中招
Analysis on the diversification of maker space mechanism construction
Modifying table names, deleting tables, obtaining table information, and deleting table records on specified dates for common MySQL statements
MySQL updates records based on the queried data
R language Markov chain Monte Carlo: practical introduction
Cultivate children's creativity under the concept of project steam Education
Fresh graduates talk about their graduation stories
Camtasia 2022全新版超清录制电脑视频
UE5全局光照系統Lumen解析與優化
分布式电商项目 谷粒商城 学习笔记<3>
力扣(LeetCode)175. 组合两个表(2022.06.24)
小 P 周刊 Vol.10
经典模型——AlexNet
Review of the paper: unmixing based soft color segmentation for image manipulation
HL7Exception: Can‘t XML-encode a GenericMessage. Message must have a recognized struct
论文回顾:Unmixing-Based Soft Color Segmentation for Image Manipulation
Interpreting Oracle
ORB-SLAM3论文概述
Overview of orb-slam3 paper
How Inkscape converts PNG pictures to SVG pictures without distortion