JS简单实现动画弹出层效果


Posted in Javascript onMay 05, 2015

JS简单实现动画弹出层效果

<!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>
<title>动画弹出层</title>
<style>
.list{
position:relative;;
background:#eee;
border:1px #ccc solid;
margin:10px;
height:30px;
width:100px;
cursor :pointer ;
}
.listShow{
position:relative;
background:#eff;
border:1px #ddd solid;
margin:10px;
height:30px;
width:100px;
cursor :pointer ;
}
.comment{
position:absolute;
left:0;
display:none;
position:absolute;
border:1px #ccc solid;
background:#fee;
width:200px;
height:200px;
overflow:hidden;
z-index:100;
}
</style>
</head>
<body>
<div class="" id="show">
0
</div>
<div class="list" id="list1">1
<div class="comment" id="comment1">内容显示111<br/>
</div>
<div class="list" id="list2">2
<div class="comment" id="comment2">内容显示222</div>
</div>
<div class="list" id="list3">3
<div class="comment" id="comment3">内容显示333</div>
</div>
</body>
</html>
<script>
var zindex=0;
function $id(id){
return document.getElementById(id);
}
var Bind = function(object,fun){
var args = Array.prototype.slice.call(arguments).slice(2);
return function(){
return fun.apply(object,args);
}
}
function addEventHandler(oTarget, sEventType, fnHandler){ 
if(oTarget.addEventListener){oTarget.addEventListener(sEventType, fnHandler, false);}
else if(oTarget.attachEvent){oTarget.attachEvent('on' + sEventType, fnHandler);}
else{oTarget['on' + sEventType] = fnHandler;}
}
var Shower=function(){
this.list=null;
this.comment=null;
this.moveLeft=80; 
this.moveTop=20;
this.height=150;
this.width=250;
this.time=800;
this.init=function(lisObj,comObj){
this.list=lisObj;
this.comment=comObj;
var _this=this;
this._fnMove=Bind(this,this.move);
(function(){
var obj=_this;
addEventHandler(obj.list,"click",obj._fnMove);
})();
};
this.move=function(){
var _this=this;
var w=0; 
var h=0; 
var height=0; //弹出div的高
var width=0; //弹出div的宽
var t=0;
var startTime = new Date().getTime();//开始执行的时间
if(!_this.comment.style.display||_this.comment.style.display=="none"){
_this.comment.style.display="block";
_this.comment.style.height=0+"px";
_this.comment.style.width=0+"px";
_this.list.style.zIndex=++zindex;
_this.list.className="listShow";
var comment=_this.comment.innerHTML; 
_this.comment.innerHTML=""; //去掉显示内容
var timer=setInterval(function(){
var newTime = new Date().getTime();
var timestamp = newTime - startTime;
_this.comment.style.left=Math.ceil(w)+"px";
_this.comment.style.top=Math.ceil(h)+"px";
_this.comment.style.height=height+"px";
_this.comment.style.width=width+"px";
t++;
var change=(Math.pow((timestamp/_this.time-1), 3) +1); //根据运行时间得到基础变化量
w=_this.moveLeft*change;
h=_this.moveTop*change;
height=_this.height*change;
width=_this.width*change;
$id("show").innerHTML=w;
if(w>_this.moveLeft){
clearInterval(timer);
_this.comment.style.left=_this.moveLeft+"px";

_this.comment.style.top=_this.moveTop+"px"; _this.comment.style.height=_this.height+"px";

_this.comment.style.width=_this.width+"px";
_this.comment.innerHTML=comment; //回复显示内容
}
},1,_this.comment);
}else{
_this.hidden();
}
}
this.hidden=function(){
var _this=this;
var flag=1;
var hiddenTimer=setInterval(function(){
if(flag==1){
_this.comment.style.height=parseInt(_this.comment.style.height)-10+"px";
}else{ _this.comment.style.width=parseInt(_this.comment.style.width)-15+"px";
_this.comment.style.left=parseInt(_this.comment.style.left)+5+"px";
}
if(flag==1 && parseInt(_this.comment.style.height)<10){
flag=-flag;
}
if(parseInt(_this.comment.style.width)<20){
clearInterval(hiddenTimer);
_this.comment.style.left="0px";
_this.comment.style.top="0px";
_this.comment.style.height="0px";
_this.comment.style.width="0px";
_this.comment.style.display="none";
if(_this.list.style.zIndex==zindex){
zindex--;
};
_this.list.style.zIndex=0;
_this.list.className="list";
}
},1)
}
}
window.onload=function(){
//建立各个菜单对象
var shower1=new Shower();
shower1.init($id("list1"),$id("comment1"));
var shower2=new Shower();
shower2.init($id("list2"),$id("comment2"));
var shower3=new Shower();
shower3.init($id("list3"),$id("comment3"));
}
</script>

以上所述就是本文的全部内容了,希望大家能够喜欢。

Javascript 相关文章推荐
DOM下的节点属性和操作小结
May 14 Javascript
JQuery设置文本框和密码框得到焦点时的样式
Aug 30 Javascript
JScript分割字符串示例代码
Sep 04 Javascript
jQuery中的pushStack实现原理和应用实例
Feb 03 Javascript
基于jQuery1.9版本如何判断浏览器版本类型
Jan 12 Javascript
对象转换为原始值的实现方法
Jun 06 Javascript
获取JS中网页各种高宽与位置的方法总结
Jul 27 Javascript
简单实现js无缝滚动效果
Feb 05 Javascript
Angular.JS中的this指向详解
May 17 Javascript
vue实现图片加载完成前的loading组件方法
Feb 05 Javascript
vue.js引入外部CSS样式和外部JS文件的方法
Jan 06 Javascript
Vue.set 全局操作简单示例
Sep 19 Javascript
教你使用javascript简单写一个页面模板引擎
May 05 #Javascript
关于延迟加载JavaScript
May 05 #Javascript
Javascript闭包(Closure)详解
May 05 #Javascript
javascript实现仿IE顶部的可关闭警告条
May 05 #Javascript
JS实现点击按钮后框架内载入不同网页的方法
May 05 #Javascript
JS实现随机乱撞彩色圆球特效的方法
May 05 #Javascript
jquery实现图片随机排列的方法
May 04 #Javascript
You might like
PHP数组排序函数合集 以及它们之间的联系分析
2013/06/27 PHP
Yii实现多按钮保存与提交的方法
2014/12/03 PHP
PHP实现简单数字分页效果
2015/07/26 PHP
PHP实现一个限制实例化次数的类示例
2019/09/16 PHP
JavaScript Event学习第八章 事件的顺序
2010/02/07 Javascript
js实现翻页后保持checkbox选中状态的实现方法
2012/11/03 Javascript
JavaScript代码编写中各种各样的坑和填坑方法
2014/06/06 Javascript
jquery实现可自动判断位置的弹出层效果代码
2015/10/12 Javascript
JavaScript创建对象的方式小结(4种方式)
2015/12/17 Javascript
基于javascript实现按圆形排列DIV元素(二)
2016/12/02 Javascript
详谈for循环里面的break和continue语句
2017/07/20 Javascript
Bootstrap实现可折叠分组侧边导航菜单
2018/03/07 Javascript
Vue隐藏显示、只读实例代码
2018/07/18 Javascript
如何在Vue中使用CleaveJS格式化你的输入内容
2018/12/14 Javascript
vue微信分享的实现(在当前页面分享其他页面)
2019/04/16 Javascript
Node.js 获取微信JS-SDK CONFIG的方法示例
2019/05/21 Javascript
Vue中util的工具函数实例详解
2019/07/08 Javascript
js实现多个标题吸顶效果
2020/01/08 Javascript
基于canvas实现手写签名(vue)
2020/05/21 Javascript
浅谈Vue 自动化部署打包上线
2020/06/14 Javascript
分析python服务器拒绝服务攻击代码
2014/01/16 Python
python中as用法实例分析
2015/04/30 Python
Pycharm学习教程(3) 代码运行调试
2017/05/03 Python
Android基于TCP和URL协议的网络编程示例【附demo源码下载】
2018/01/23 Python
利用Python如何制作好玩的GIF动图详解
2018/07/11 Python
python ftplib模块使用代码实例
2019/12/31 Python
From CSV to SQLite3 by python 导入csv到sqlite实例
2020/02/14 Python
15个Pythonic的代码示例(值得收藏)
2020/10/29 Python
如何用canvas实现在线签名的示例代码
2018/07/10 HTML / CSS
Java面试题:为什么要用Java
2012/05/11 面试题
员工培训邀请函
2014/01/11 职场文书
球队口号
2014/06/18 职场文书
医德医魂心得体会
2014/09/11 职场文书
2014年幼儿园工作总结
2014/11/10 职场文书
怎样写离婚协议书
2015/01/26 职场文书
缓存替换策略及应用(以Redis、InnoDB为例)
2021/07/25 Redis