<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>简单的html5影音视频播放器代码</title> <link rel="stylesheet" href="dist/plyr.css"> <style> body{background-color: #262626} .m{ margin-left: auto; margin-right: auto; width: 640px; margin-top: 100px; } </style> </head> <body> <div class="m"> <video poster='vs.png' controls><source src='http://tb-video.bdstatic.com/tieba-smallvideo-transcode/66_b877976c2de0841c49dcc7a4a20467b5_3.mp4' type='video/mp4'></video> </div> </body> </html>