为什么加上preload之后window.load会变慢?
代码如下:
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#video {
width: 300px;
height: 300px;
}
</style>
</head>
<body>
<video id="video" class=""
controls preload="none"
poster="test.jpg"
>
<source src="test.mp4" type='video/mp4' />
<source src="test.webm" type='video/webm' />
<source src="test.ogv" type='video/ogg' />
</video>
<script>
window.addEventListener('load', function() {
console.log('===load====');
}, false);
</script>
</body>
</html>
如果不加preload控制台会立刻打印输出,加上
preload="none"
之后反而延时输出。
国士ˇ無双
11 years, 2 months ago