jquery实现遮罩

要想实现一下效果,需要下载一个juery库,下载地址     http://jquery.com/



<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<script src="../js/jquery-3.2.1.min.js" type="text/javascript" charset="utf-8"></script>
		<style type="text/css">
			ul{
				list-style: none;
				width: 1250px;
				height: 288px;
				margin: 0 auto;
				clear: both;
			}
			ul li{
				position: relative;
				float: left;
				width: 397px;
				height: 288px;
				background-color: pink;
				margin-left: 15px;
				overflow: hidden;
			}
			ul li div.zhe{
				position: absolute;
				width: 397px;
				height: 288px;
				top: 0;
				left: -397px;
				background-color: rgba(255,255,255,0.5);
			}
		</style>
	</head>
	<body>
		<div class="container">
			<ul>
				<li></li>
				<li></li>
				<li></li>
			</ul>
			
		</div>
	</body>
	<script type="text/javascript">
		$(function(){
			$("ul li").each(function(){
				$("<div class='zhe'>").appendTo($(this));
			})
			$("ul li").bind("mouseenter mouseleave", function(e){
				
				$pX = e.pageX;
				$pY = e.pageY;
				$x = $(this).width();
				$y = $(this).height();
				$offX = $(this).offset().left;
				$offY = $(this).offset().top;
				
				var $k = $y / $x;   //对角线斜率
				
				var $k0 = ($pY - $offY - $y/2) / ($pX - $offX - $x/2);
			
				var direction = "";
				
				if ($k0 > -$k && $k0 < $k) {
					if (($pX - $offX - $x/2) > 0 ) {
						direction = "right";
						console.log("right");
					}else{
						direction = "left";
						console.log("left");
					}
				}else{
					if(($pY - $offY - $y/2) > 0 ){
						direction = "bottom";
						console.log("bottom")
					}else{
						direction = "top";
						console.log("top");
					}
				}
				if (e.type == "mouseenter") {
					switch(direction){
						case "top":
							$(this).children(".zhe").css({"top":-$(this).height(),"left": 0});
							break;
						case "left":
							$(this).children(".zhe").css({"top":0,"left": -$(this).width()});
							break;	
						case "right":
							$(this).children(".zhe").css({"top":0,"left": $(this).width()});
							break;
						case "bottom":
							$(this).children(".zhe").css({"top":$(this).height(),"left": 0});
							break;
					}
					$(this).children(".zhe").stop(true,true).animate({"top":0,"left":0},"fast");
				}
				
				else if (e.type == "mouseleave"){
					switch(direction){
						case "top":
							$(this).children(".zhe").stop(true,true).animate({"top":-$(this).height()},"fast");
							break;
						case "left":
							$(this).children(".zhe").stop(true,true).animate({"left":-$(this).width()},"fast");
							break;
						case "right":
							$(this).children(".zhe").stop(true,true).animate({"left":$(this).width()},"fast");
							break;
						case "bottom":
							$(this).children(".zhe").stop(true,true).animate({"top":$(this).height()},"fast");
							break;
					}
				}
				
			});
		})
	</script>
</html>




鼠标从左边进去

鼠标从右边进去

鼠标从上方进去

鼠标从下方进去



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值