码迷,mamicode.com
首页 > 其他好文 > 详细

脚本 折叠 各方向

时间:2016-04-22 16:39:51      阅读:103      评论:0      收藏:0      [点我收藏+]

标签:function   absolute   position   relative   animate   

$(this).find(".bag_tool").animate({ width: ‘toggle‘ }); //左折叠



<style type="text/css">
.slide {
position: relative;
height: 200;
lightyellow;
}
 
.slide .inner {
position: absolute;
left: 0;
bottom: 0;
height: 100;
lightblue;
width: 100%
}
</style>
$("#slideleft button").click(function(){//左滑动
var $lefty = $(this).next();
$lefty.animate({
left:parseInt($lefty.css(‘left‘),10)==0 ? -$lefty.outerWidth() : 0
});
});



$("#slidemarginleft button").click(function(){//右滑动
var $marginlefty = $(this).next();
$marginlefty.animate({
marginLeft:parseInt($marginlefty.css(‘marginLeft‘),10)==0 ? $marginlefty.outerWidth() : 0
});
});


脚本 折叠 各方向

标签:function   absolute   position   relative   animate   

原文地址:http://zhaoyingyatou.blog.51cto.com/7151735/1766750

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!