javascript

javascript实现弹出窗口随着滚动条而动
首先要知道
document.body.clientWidth(网页可见区域宽)
document.body.clientHeight(网页可见区域高)
document.body.scrollTop(网页被卷去的高)
document.body.scrollLeft(网页被卷去的左)
	<script type="text/javascript" language="javascript">
	function divcenter()
	{
		var divId = document.getElementById('test');
		//如果不需要居中
		//divId.style.left+=document.body.scrollLeft;
		//divId.style.top+=document.body.scrollTop;
		divId.style.left = (document.body.clientWidth-divId.clientWidth)/2+document.body.scrollLeft;
		divId.style.top = (document.body.clientHeight-divId.clientHeight)/2+document.body.scrollTop;
	}
</script>

页面的div定义:
<div id="test" style="position:absolute;left:200px;top:300px;width:200px;height:200px;background-color:navy;border:2px">
		居中显示
		</div>

在body的属性中加入:
onresize="divcenter();" onscroll="divcenter()

你可能感兴趣的:(JavaScript,java)