有没有好用的h5播放器,可以记录进度的

如题所述

第1个回答  2019-11-11

flowplayer播放器,也可以的

第2个回答  2019-10-15
<!DOCTYPE html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title></title>
</head>
<style>
.chimee-container {
width: 800px;
height: 400px;
margin: 10px auto;
position: relative;
}

.time-ad {
background-color: transparent;
border: 0;
}

.time-ad img {
display: block;
width: 30px;
}

.time-ad em {
position: absolute;
right: -7px;
top: 35px;
width: 60px;
text-align: center;
font-size: 12px;
background-color: rgba(156, 85, 85, 0.66);
padding: 0 3px;
z-index: -1;
border-radius: 5px;
}

.time-ad cm-pp-close {
display: none;
}

.time-ad cm-pp-body {
padding: 0;
}
</style>

<body>

<div class="chimee-container">
<video tabindex="-1"></video>
</div>

<script src="https://s3.ssl.qhres.com/!fd546749/chimee-player.browser.js" type="text/javascript"></script>

</body>

</html>
<script>
var aggdPlugin = ChimeePlayer.popupFactory({
name: 'time-ad',
className: 'time-ad',
title: false,
body: '',
offset: '0px 10px auto auto',
operable: false
});
ChimeePlayer.install(aggdPlugin);

var player = new ChimeePlayer({
wrapper: '.chimee-container',
src: location.protocol + '//chimee.org/vod/1.mp4',
isLive: false,
box: 'native',
autoplay: false,
controls: true,
plugin: [aggdPlugin.name]
});
</script>
第3个回答  2019-10-16
video标签啊。应该有属性的吧。查询w3school把。那里更详细点。
相似回答