JS实现响应鼠标点击动画渐变弹出层效果代码


Posted in Javascript onMarch 25, 2016

本文实例讲述了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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<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">三水点靠木<br/>
</div>
<div class="list" id="list2">2
 <div class="comment" id="comment2">新浪搜狐</div>
</div>
<div class="list" id="list3">3
 <div class="comment" id="comment3">网页特效</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程序设计有所帮助。

Javascript 相关文章推荐
jquery 学习笔记一
Apr 07 Javascript
javascript数组去重方法终极总结
Jun 05 Javascript
JavaScript编程中布尔对象的基本使用
Oct 25 Javascript
使用vue.js实现联动效果的示例代码
Jan 10 Javascript
Angular实现的日程表功能【可添加及隐藏显示内容】
Dec 27 Javascript
js闭包学习心得总结
Apr 17 Javascript
JavaScript实现数组全排列、去重及求最大值算法示例
Jul 30 Javascript
从零开始搭建vue移动端项目到上线的步骤
Oct 15 Javascript
详解从vue-loader源码分析CSS Scoped的实现
Sep 23 Javascript
ES6之Proxy的get方法详解
Oct 11 Javascript
javascript实现留言板功能
Feb 08 Javascript
详解vite2.0配置学习(typescript版本)
Feb 25 Javascript
JS+CSS实现鼠标经过弹出一个DIV框完整实例(带缓冲动画渐变效果)
Mar 25 #Javascript
JS+CSS实现的漂亮渐变背景特效代码(6个渐变效果)
Mar 25 #Javascript
详解Javascript继承的实现
Mar 25 #Javascript
JavaScript实现弹出DIV层同时页面背景渐变成半透明效果
Mar 25 #Javascript
JavaScript修改作用域外变量的方法
Mar 25 #Javascript
JavaScript 2048 游戏实例代码(简单易懂)
Mar 25 #Javascript
JavaScript入门系列之知识点总结
Mar 24 #Javascript
You might like
用PHP读注册表
2006/10/09 PHP
php实现微信公众平台账号自定义菜单类
2014/12/02 PHP
PHP实现简易blog的制作
2016/10/24 PHP
给moz-firefox下添加IE方法和属性
2007/04/10 Javascript
跟着JQuery API学Jquery 之二 属性
2010/04/09 Javascript
JQuery中form验证出错信息的查看方法
2013/10/08 Javascript
js滚动条平滑移动示例代码
2016/03/29 Javascript
判断JS对象是否拥有某属性的方法推荐
2016/05/12 Javascript
JS留言功能的简单实现案例(推荐)
2016/06/23 Javascript
jQuery表单对象属性过滤选择器实例详解
2016/09/13 Javascript
vue-router+nginx 非根路径配置方法
2018/06/30 Javascript
vue项目引入字体.ttf的方法
2018/09/28 Javascript
vue开发环境配置跨域的方法步骤
2019/01/16 Javascript
vue-cli+iview项目打包上线之后图标不显示问题及解决方法
2019/10/16 Javascript
极简的Python入门指引
2015/04/01 Python
详解Python3中yield生成器的用法
2015/08/20 Python
用生成器来改写直接返回列表的函数方法
2017/05/25 Python
解读! Python在人工智能中的作用
2017/11/14 Python
python对文件目录的操作方法实例总结
2019/06/24 Python
django项目环境搭建及在虚拟机本地创建django项目的教程
2019/08/02 Python
python 经典数字滤波实例
2019/12/16 Python
Python拼接字符串的7种方式详解
2020/03/19 Python
Python logging模块handlers用法详解
2020/08/14 Python
Python读取Excel一列并计算所有对象出现次数的方法
2020/09/04 Python
python两种获取剪贴板内容的方法
2020/11/06 Python
python基于爬虫+django,打造个性化API接口
2021/01/21 Python
基督教卡片、励志礼品、家居装饰等:DaySpring
2018/10/12 全球购物
英国排名第一的餐具品牌:Denby Pottery
2019/11/01 全球购物
乌克兰品牌化妆品和香水在线商店:Bomond
2020/01/14 全球购物
2014年商场超市庆元旦活动方案
2014/02/14 职场文书
《湘夫人》教学反思
2014/02/21 职场文书
热门专业求职信
2014/05/24 职场文书
工程承包协议书范本
2014/09/29 职场文书
领导班子四风问题个人对照检查材料
2014/10/04 职场文书
2015年学校管理工作总结
2015/07/20 职场文书
Mysql表数据比较大情况下修改添加字段的方法实例
2022/06/28 MySQL