博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery左右自适应伸缩插件
阅读量:5153 次
发布时间:2019-06-13

本文共 1428 字,大约阅读时间需要 4 分钟。

简单css布局

body {
margin: 0 auto; padding: 0 auto;}.showpannal {
position:absolute; left: 200px; top:300px;}.pannal_left {
width: 200px; height: 670px; background-color: #6CF; float: left;}.pannal_right {
height: 670px; margin-left: 200px; background-color: #CFF}

jquery自定义函数

shrink = function () {        var show = '
'; return ep = { init: function (obj) { ep.create(obj); ep.bindEvent(obj); }, create: function (obj) { obj.append(show); obj.find("span").addClass("showpannal"); }, bindEvent: function (obj) { obj.toggle(function () { $("#pannal_left").animate({ width: "0px" }); $("#pannal_right").animate({ marginLeft: "0px" }); obj.find("span").animate({ left: "0px" }); }, function () { $("#pannal_left").animate({ width: "200px" }); $("#pannal_right").animate({ marginLeft: "200px" }); obj.find("span").animate({ left: "200px" }); }); } }; } $.fn.bindanimate = function () { var me=new shrink(); return this.each(function () { me.init($(this)); }); }

 

调用事例

无标题文档

  

 展示效果

转载于:https://www.cnblogs.com/f23wangj/p/4268326.html

你可能感兴趣的文章
使用localStorage保存搜索记录
查看>>
PHP队列
查看>>
PhpStudy 升级 MySQL 版本到5.7
查看>>
程序代码记Log
查看>>
ORACLE 11G使用用EXPDP导出时,空表不能导出
查看>>
2017-2018-1 20155216 实验三:并发程序
查看>>
图像旋转
查看>>
九宫格抽奖
查看>>
阅读笔记第五章
查看>>
金蝶数据库执行语句
查看>>
前端SEO技巧
查看>>
python+selenium遇到鼠标悬停不成功可以使用js进行操作
查看>>
我的退休程序修正过程
查看>>
Java程序优化细节
查看>>
baihuilong advertising test
查看>>
Maven安装配置
查看>>
ORA-10635: Invalid segment or tablespace type
查看>>
计算机改名导致数据库链接的诡异问题
查看>>
Windows 8 操作系统 购买过程
查看>>
软件工程课程-个人编程作业
查看>>