<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style type="text/css">
video{
width: 500px;
height: 500px;
border:1px solid #000;
}
</style>
</head>
<body>
<video src="1.mp4" autobuffer autoloop loop controls></video>
</body>
</html>
自己好了。
你说的播放不了是不能自动播放吧?
ios自某个版本之后就禁止了自动播放,需要代码处理:
function autoPlayVideo() { /* 自动播放音乐效果,解决浏览器或者APP自动播放问题 */ function musicInBrowserHandler() { musicPlay(true); document.body.removeEventListener('touchstart', musicInBrowserHandler); } document.body.addEventListener('touchstart', musicInBrowserHandler); /* 自动播放音乐效果,解决微信自动播放问题 */ function musicInWeixinHandler() { musicPlay(true); document.addEventListener("WeixinJSBridgeReady", function() { var media = document.getElementById('video'); musicPlay(true); }, false); document.removeEventListener('DOMContentLoaded', musicInWeixinHandler); } document.addEventListener('DOMContentLoaded', musicInWeixinHandler); } function musicPlay(isPlay) { var media = document.getElementById('video'); if (isPlay && media.paused) { media.play(); } if (!isPlay && !media.paused) { media.pause(); } }
就是播放不了 点了没反应 我用了你上面的好像也没用
@cd_冬子: oh no, mp3确实可以,mp4在我的10.1版本跟你一样,不行。
@女程序猿:我解决了,不知道怎么就好了,我也不知道动了哪里。没改什么,就是突然就可以播放了
你换成其他格式行吗?比如mp3