首页 > 代码库 > 浮动定位

浮动定位

<!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/html; charset=utf-8" />
<title>无标题文档</title>
<style>

.mydiv{ width:500px; height:200px; background:#999; position:fixed; float:right; display:none;}

</style>
</head>
<script>
window.onscroll = function(){
	divoobj = document.getElementById(‘div1‘);
	scrolltop = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop;
	console.log(scrolltop);
	if(scrolltop>30){
		divoobj.style.display = ‘block‘;
	}else{
		divoobj.style.display = ‘none‘;
	}
}
</script>
<body>

<div class="mydiv" id="div1">
<div>111</div>
<div>222</div>
<div>333</div>
</div>

<div class="divcss5"> 
    <div class="divcss5_left">布局靠左浮动</div> 
    <div class="divcss5_right">布局靠右浮动</div> 
    <div class="clear"></div><!-- html注释:清除float产生浮动 --> 
</div>
布局靠左浮动

<p>
布局靠左浮动
<p>

布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>
布局靠左浮动
<p>

</body>
</html>


浮动定位