用js模拟JQuery的show与hide动画函数代码


Posted in Javascript onSeptember 20, 2010
//根据ID返回dom元素 
var $ = function(id){return document.getElementById(id);} 
//返回dom元素的当前某css值 
var getCss = function(obj,name){ 
//ie 
if(obj.currentStyle) { 
return obj.currentStyle[name]; 
} 
//ff 
else { 
var style = document.defaultView.getComputedStyle(obj,null); 
return style[name]; 
} 
}

Hide函数:
var hide = function(obj,speed,fn){ 
obj = $(obj); if (!speed) { 
obj.style.display = 'none'; 
return; 
} 
else{ 
speed = speed==='fast'?20:speed==='normal'?30:50; 
obj.style.overflow = 'hidden'; 
} 
//获取dom的宽与高 
var oWidth = getCss(obj,'width'), oHeight = getCss(obj,'height'); 
//每次dom的递减数(等比例) 
var wcut = 10*(+oWidth.replace('px','') / +oHeight.replace('px','')),hcut = 10; 
//处理动画函数 
var process = function(width,height){ 
width = +width-wcut>0?+width-wcut:0; 
height = +height-hcut>0?+width-hcut:0; 
//判断是否减完了 
if(width !== 0 || height !== 0) { 
obj.style.width = width+'px'; 
obj.style.height = height+'px'; 
setTimeout(function(){process(width,height);},speed); 
} 
else { 
//减完后,设置属性为隐藏以及原本dom的宽与高 
obj.style.display = 'none'; 
obj.style.width = oWidth; 
obj.style.height = oHeight; 
if(fn)fn.call(obj); 
} 
} 
process(oWidth.replace('px',''),oHeight.replace('px','')); 
}

Show函数与Hide函数类似,只是思路相反而已
var show = function(obj,speed,fn){ obj = $(obj); 
if (!speed) { 
obj.style.display = 'block'; 
return; 
} 
else{ 
speed = speed==='fast'?20:speed==='normal'?30:50; 
obj.style.overflow = 'hidden'; 
} 
var oWidth = getCss(obj,'width').replace('px',''), oHeight = getCss(obj,'height').replace('px',''); 
var wadd = 10*(+oWidth / +oHeight),hadd = 10; 
obj.style.width = 0+'px'; 
obj.style.height = 0+'px'; 
obj.style.display = 'block'; 
var process = function(width,height){ 
width = +oWidth-width<wadd?+oWidth:wadd+width; 
height = +oHeight-height<hadd?oHeight:hadd+height; 
if(width !== +oWidth || height !== +oHeight) { 
obj.style.width = width+'px'; 
obj.style.height = height+'px'; 
setTimeout(function(){process(width,height);},speed); 
} 
else { 
obj.style.width = oWidth+'px'; 
obj.style.height = oHeight+'px'; 
if(fn)fn.call(obj); 
} 
} 
process(0,0); 
}

调用方式如:

hide('a','normal',function(){ 
show('a','normal'); 
});

呃。。。感觉写得好冗余,但不知要如何再优化,希望有高手能写个精简些的。。。

Javascript 相关文章推荐
JavaScript实现网页图片等比例缩放实现代码及调用方式
Feb 25 Javascript
动态标签 悬停效果 延迟加载示例代码
Nov 21 Javascript
js对象内部访问this修饰的成员函数示例
Apr 27 Javascript
node.js中的fs.lstat方法使用说明
Dec 16 Javascript
PHP结合jQuery实现的评论顶、踩功能
Jul 22 Javascript
js如何打印object对象
Oct 16 Javascript
自己动手写的javascript前端等待控件
Oct 30 Javascript
JS实现iframe自适应高度的方法示例
Jan 07 Javascript
javascript 中iframe高度自适应(同域)实例详解
May 16 Javascript
layui 表格操作列按钮动态显示的实现方法
Sep 06 Javascript
微信小程序纯文本实现@功能
Apr 08 Javascript
es6函数之箭头函数用法实例详解
Apr 25 Javascript
通过DOM脚本去设置样式信息
Sep 19 #Javascript
javscript对象原型的一些看法
Sep 19 #Javascript
Ext 今日学习总结
Sep 19 #Javascript
JS面向对象编程 for Cookie
Sep 19 #Javascript
网络之美 JavaScript中Get和Set访问器的实现代码
Sep 19 #Javascript
asp.net下使用jquery 的ajax+WebService+json 实现无刷新取后台值的实现代码
Sep 19 #Javascript
jquery异步循环获取功能实现代码
Sep 19 #Javascript
You might like
咖啡豆要不要放冰箱的原因
2021/03/04 冲泡冲煮
PHP MVC模式在网站架构中的实现分析
2010/03/04 PHP
WordPress的文章自动添加关键词及关键词的SEO优化
2016/03/01 PHP
php写app接口并返回json数据的实例(分享)
2017/05/20 PHP
解决php扩展安装不生效问题
2019/10/25 PHP
在网页中控制wmplayer播放器
2006/07/01 Javascript
Jquery replace 字符替换实现代码
2010/12/02 Javascript
js网页中的(运行代码)功能实现思路
2013/02/04 Javascript
元素未显示设置width/height时IE中使用currentStyle获取为auto
2014/05/04 Javascript
jquery中each遍历对象和数组示例
2014/08/05 Javascript
jQuery实现连续动画效果实例分析
2015/10/09 Javascript
JavaScript阻止回车提交表单的方法
2015/12/30 Javascript
基于jQuery日历插件制作日历
2016/03/11 Javascript
Bootstrap每天必学之弹出框(Popover)插件
2016/04/25 Javascript
jquery 将当前时间转换成yyyymmdd格式的实现方法
2016/06/01 Javascript
微信小程序 wx.uploadFile在安卓手机上面the same task is working问题解决
2016/12/14 Javascript
详解react-webpack2-热模块替换[HMR]
2017/08/03 Javascript
Vue实现按钮旋转和移动位置的实例代码
2018/08/09 Javascript
解决vue-router在同一个路由下切换,取不到变化的路由参数问题
2018/09/01 Javascript
[02:54]DOTA2英雄基础教程 暗影牧师戴泽
2013/12/05 DOTA
在Python中处理列表之reverse()方法的使用教程
2015/05/21 Python
在Python 3中实现类型检查器的简单方法
2015/07/03 Python
python getopt详解及简单实例
2016/12/30 Python
python学习--使用QQ邮箱发送邮件代码实例
2019/04/16 Python
PyTorch 中的傅里叶卷积实现示例
2020/12/11 Python
详解HTML5中的Communication API基本使用方法
2016/01/29 HTML / CSS
英国骑行、跑步、游泳、铁人三项运动装备专卖店:Wiggle
2016/08/23 全球购物
EQVVS官网:设计师男装和女装
2018/10/24 全球购物
美国最好的钓鱼、狩猎和划船装备商店:Bass Pro Shops
2018/12/02 全球购物
个人简历自我评价
2014/01/06 职场文书
干部现实表现材料
2014/02/13 职场文书
股份合作协议书
2014/04/12 职场文书
教学督导岗位职责
2015/04/10 职场文书
刑事附带民事代理词
2015/05/25 职场文书
演讲开场白台词大全
2015/05/29 职场文书
react合成事件与原生事件的相关理解
2021/05/13 Javascript