实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml">
3
    <head> 
4
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
5
        <title>html5响应式触屏移动端音频播放器</title>
6
        <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
7
        <link rel="stylesheet" href="/api/jq/5733e32adaa13/css/audio.css" />
8
    </head>
9
    <body>
10
        <div id="wrapper">
11
            <audio preload="auto" controls>
12
                <source src="/api/jq/5733e32adaa13/js/audio.mp3" />
13
                <source src="/api/jq/5733e32adaa13/js/audio.ogg" />
14
                <source src="/api/jq/5733e32adaa13/js/audio.wav" />
15
            </audio>
16
            <div id="copyright">Music by <a href="#">手册网</a></div>
17
        </div>
18
        <script src="/api/jq/5733e32adaa13/js/jquery.js"></script>
19
        <script src="/api/jq/5733e32adaa13/js/audioplayer.js"></script>
20
        <script>
21
            $(function() {
22
                $('audio').audioPlayer();
23
            });
24
        </script>
25
    </body>
26
</html>
27