<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/htmlcharset=UTF-8" />
<title>jquery浮动层</title>
<style type="text/css">
#Float {background-color: #000height: 200pxwidth: 100pxposition: absolutetop: 80pxright: 20px}
</style>
</head>
<script type="text/javascript" src="http://www.codefans.net/ajaxjs/jquery-1.6.2.min.js"></script>
<script language="javascript">
$(document).ready(function(){
$(window).scroll(function (){
var offsetTop = $(window).scrollTop() + 80 +"px"
$("#Float").animate({top : offsetTop },{ duration:500 , queue:false })
})
})
</script>
<body>
<div style="height:2000px"></div>
<div id="Float"></div>
</body>
</html>
因为你的上面的浮层将video的浮层给盖住了,因此你的所有的鼠标事件都是针对于上面的浮层的,但是你上层还是中间透明的图片,那么建议你修改上层的大小,使上层不要盖住鼠标点击事件的部分,只有这样才能解决,没有其他的方法。具体实施过程,就得看你如何设置样式了这个需要用到js方面的数据交互暴力一点的做法是:
document.getElementsByClassName('img-div')[0].style.display = 'none'
[0]看你页面的情况使用,你可以先打印document.getElementsByClassName('img-div')看看什么内容在接下来的操作