主要效果:在视屏播放网站,如何让div悬浮在全频的视频播放器之上。
细节描述:视频播放器全屏幕的情况下,id=show的div依然可以覆盖在视频只上
简要:设置z-index是没有效果的,所以不要回答这块了
技术:html+css+js
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
#show {
width: 30vw;
height: 30vh;
background-color: red;
position: absolute;
z-index: 2147483647;
}
</style>
</head>
<body>
<video src='https://www.runoob.com/try/demo_source/movie.mp4' controls></video>
<div id='show'></div>
<script>
</script>
</body>
</html>