jquery 卷帘效果实现代码(不同方向)_Javascript教程-查字典教程网
jquery 卷帘效果实现代码(不同方向)
jquery 卷帘效果实现代码(不同方向)
发布时间:2017-01-14 来源:查字典编辑
摘要:demo01.htm复制代码代码如下:方向反馈html,body{margin:0;padding:50px;}#wrap{position...

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>反馈方向</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();

});

}

}

);

}

});

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新Javascript教程学习
    热门Javascript教程学习
    编程开发子分类