<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Audio Player。兼容ie9及以上</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="css/audioplayer.css" />
<script src="js/jquery.js"></script>
<script src="js/audioplayer.js"></script>
<!--隐藏音乐控件-->
<style>
.audioPlayer1{display:none;}
</style>
<script>
$(function(){
//暂停播放
$("#stop").click(function(){
$("audio")[0].pause();
});
//播放
$("#start").click(function(){
$("audio")[0].play();
});
//播放时长
$("#duration").click(function(){
alert($("audio")[0].duration)
});
});
</script>
</head>
<body>
<input type="button" id="start" value="播放"/>
<input type="button" id="stop" value="暂停"/>
<input type="button" id="duration" value="播放时长">
<!--使用时,音乐控件放置至于画面底部-->
<div class="audioPlayer1">
<!-- 文档加载后,自动循环播放。兼容ie9及以上-->
<audio src="audio/1.mp3" preload="auto" controls autoplay loop ></audio>
<div>
</body>
</html>
相关文章
- 11-01jQuery练习t48
- 11-01jquery实现在光标位置(input、textarea)插入内容的方法
- 11-01jQuery学习-day05
- 11-01jQuery图片显示插件 PrettyPhoto
- 11-01解决idea使用Jquery的$符号,明明导入却还是提示找不到符号。
- 11-01使用jquery何时将函数分配给变量
- 11-01003 JQuery (009 - 009)
- 11-01jQuery元素操作
- 11-018.jQuery遍历索引的方法
- 11-01jQuery 节点操作 筛选二