Blogger Information
Blog 25
fans 0
comment 0
visits 18815
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
122作业滚动页面显示隐藏
℃级的博客
Original
672 people have browsed it

实例

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
	<title></title>
	<script src="../../jquery-3.2.1.min.js"></script>
	<style type="text/css">
     *{margin: 0;padding:0;}
     body{height:1500px;}
	.context{width:100%;height:50px;background:rgba(150,150,150,0.5);
	box-shadow:1px 2px 7px #ccc;position:fixed;}
	.context form{width:600px;height:50px;background:rgba(100,100,100,0.5);margin:0 auto;line-height:50px;position:relative;}
	.context form input{width:500px;height:30px;line-height:30px;margin:0 auto;
		border-top-left-radius:20px;border-bottom-left-radius:20px;border:none;
		padding-left:20px;
		outline:none;}
		.context form button{width:100px;height:30px;line-height:30px;border-top-right-radius:20px;
			border-bottom-right-radius:20px;border:none;text-align:center;
			position:absolute;right:0px;top:11px;
			}
    .pic{width:50%;height:400px;background-image:url(images/3.jpg);
    	margin:0 auto;}
     .context1{background:rgba(160,3,162,0.4);}
	</style>
</head>
<body>
   <div class="context">
<form>
<input type="text" placeholder="#请输入此处#">
<button>全网搜</button>
</form>
   </div>
   <div class="pic"></div>
   <div class="box"></div>
</body>
<script>
$(function(){
	$(window).scroll(
		function(){
      if($(window).scrollTop()>60){
       $('.context').css('display','none');
	}else{
     $('.context').css('display','block');
	}   
	   if($(window).scrollTop()>350){
          $('.context').css('display','block');
          $('.context').addClass('context1');
	   }else{
          $('.context').removeClass('context1');
	   }  
		})
	
})
</script>

</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

1.bmp

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post