简体   繁体   English

使用bootstrap 3音频播放器,但它显示正常的html5输出

[英]using bootstrap 3 audio player but it shows normal html5 output

I am using Bootstrap 3 player to output audio player but the page shows me normal black html5 audio player output. 我使用Bootstrap 3播放器输出音频播放器,但页面显示我正常的黑色html5音频播放器输出。

Here is my directory structure: 这是我的目录结构:

miuse/application  
miuse/bootstrap
miuse/bootstrap/css  
miuse/bootstrap/js  
miuse/bootstrap3_player-master  
miuse/bootstrap3_player-master/css  
miuse/bootstrap3_player-master/js
miuse/music  

Here is my View code(using code-igniter): 这是我的View代码(使用代码点火器):

<!DOCTYPE html>
<html lang="en">
<head>
<title>
try
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script src="http://localhost/miuse/bootstrap/js/jquery-3.1.0.min.js"></script>
<script src="http://localhost/miuse/bootstrap/js/bootstrap.min.js"></script>    
<script src="http://localhost/miuse/bootstrap3_player-master/js/bootstrap3_player.js"></script>
<link rel="stylesheet" href="http://localhost/miuse/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="http://localhost/miuse/bootstrap3_player-master/css/bootstrap3_player.css">
</head>
<body>
<div class=row>
<audio controls>
<source src="http://localhost/miuse/music/eyeofthetiger.mp3" type="audio/mpeg" /> 
</audio>
</div>
</body>
</html>   

Cut this: 切这个:

<script src="http://localhost/miuse/bootstrap3_player-master/js/bootstrap3_player.js"></script>

and paste it in the body tag. 并将其粘贴到body标签中。

<!DOCTYPE html>
<html lang="en">
<head>
<title>
try
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<script src="http://localhost/miuse/bootstrap/js/jquery-3.1.0.min.js"></script>
<script src="http://localhost/miuse/bootstrap/js/bootstrap.min.js"></script>    
<link rel="stylesheet" href="http://localhost/miuse/bootstrap/css/bootstrap.css">
<link rel="stylesheet" href="http://localhost/miuse/bootstrap3_player-master/css/bootstrap3_player.css">
</head>
<body>
<div class=row>
<audio controls>
<source src="http://localhost/miuse/music/eyeofthetiger.mp3" type="audio/mpeg" /> 
</audio>
</div>
<script src="http://localhost/miuse/bootstrap3_player-master/js/bootstrap3_player.js"></script>
</body>
</html>

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM