播放器播放展示 原仿B站的视频弹幕播放器有后门已删除,重写一个简单可用的m3u8播放器 仅支持同服务器下的m3u8视频解析播放 插入播放器代码: 以下代码仅供参考有些主题可能是不能用以下代码的请自行修改(固定高度) <iframe src="https://播放器域名/player/?url=视频链接" allowfullscreen="" mozallowfullscreen="" msallowfullscreen="" oallowfullscreen="" webkitallowfullscreen="" width="100%" height="500px" frameborder="0"></iframe> <style type="text/css"> .video-container { display: block; position: relative; width: 100%; height: 0; overflow: hidden; box-sizing: border-box } .video-container iframe, .video-container video { position: absolute; top: 0; left: 0; border: none; width: 100%; height: 100% } .video-ratio-16by9 { padding-bottom: 56.25% /* 9/16 */ } .video-ratio-4by3 { padding-bottom: 75% /* 3/4 */ } </style> <div class="video-container video-ratio-16by9"> <iframe src="https://播放器域名/player/?url=视频链接" allowfullscreen="" mozallowfullscreen="" msallowfullscreen="" oallowfullscreen="" webkitallowfullscreen="" frameborder="0"></iframe> </div>