jquery不同方向的卷帘效果

首先非常感谢这篇博文:

http://www.cnblogs.com/rubylouvre/archive/2012/11/06/2757175.html

demo01.htm

<!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 type="text/css">
html,body{margin:0;padding:50px;}
#wrap{position:relative;width:400px;height:300px;background:#33aa00;margin:50px;display:inline-block;font-size:50px;text-align:center;line-height:300px;overflow:hidden;}
</style>
<body>
<div id="wrap">
	 方向反馈
</div>
<div id="result" >
	<span style="color:#FFF;">反馈方向</span>
</div>
<script src="../jquery-1.8.0.min.js" type="text/javascript"></script>
<script src="rollingMask-0.1.0.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
	$.rollingMask({
		objId:"wrap",
		content:$("#result").html()
	});
});
</script>
</body>
</html>

rollingMask-0.1.0.js

/**
* 不同方向的卷帘效果
* 
**/
$.extend({
	rollingMask:function(opt,callback){
		this.defaults = {
			objId:"", // 容器id
			content:"test", // 卷帘内容
			opacity: 0.8,
			fadeSpeed:150 // 卷帘消失的时间
		};
		// 参数初始化
		var opts = $.extend(this.defaults,opt);	
		
		var contentId = opts.objId + "_content";
		var showId = opts.objId + "_show";
		
		$("#" + opts.objId).bind("mouseenter mouseleave",
		function(e) {
			var w = $(this).width();
			var h = $(this).height();
			var x = (e.pageX - this.offsetLeft - (w / 2)) * (w > h ? (h / w) : 1);
			var y = (e.pageY - this.offsetTop - (h / 2)) * (h > w ? (w / h) : 1);
			var direction = Math.round((((Math.atan2(y, x) * (180 / Math.PI)) + 180) / 90) + 3) % 4;
			var eventType = e.type;
			
			if(e.type == 'mouseenter'){
				$("#" + opts.objId).append("<div id=\"" + contentId+ "\">" +  opts.content + "</div>");
				$("#" + contentId).css({
					"position":"absolute",
					"width":w + "px",
					"height":h + "px",
					"top":"0px",
					"left":"0px",
					"background":"#F55",
					opacity:opts.opacity
				});
				switch(direction){
					case 0:
						$("#" + contentId).css("top",-h + "px");
						break;
					case 1:
						$("#" + contentId).css("left",w + "px");
						break;
					case 2:
						$("#" + contentId).css("top",h + "px");
						break;
					case 3:
						$("#" + contentId).css("left",-w + "px");
						break;
				}
				$("#" + contentId).animate({"top":"0px","left":"0px"});
			}else{
				$("#" + contentId).fadeOut(opts.fadeSpeed, function(){
					$("#" + contentId).remove();
				});
			}
		}
	);
	}
});




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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值