rushfee/resource/html/rush/record_rush_Play.html

22 lines
608 B
HTML

<html login="false">
<head>
<meta charset="UTF-8">
<title>录音调听</title>
<script for="window" event="onload">
window.focus();
</script>
</head>
<body style='text-align: center;background-color:#3d3d3d;'>
<div id="video" style="width:100%;height:100%;position: relative;">
</div>
<script type="text/javascript">
function init(params) {
var videopath = params["video_path"];
$("#video").append("<audio autoplay=\"autoplay\" style='position: absolute;top: 35%;left:30%' src=\""+videopath+"\" controls=\"controls\"></audio>");
}
</script>
</body>
</html>