博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery slideDown效果
阅读量:5959 次
发布时间:2019-06-19

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

<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Test</title> <style> .parent {background-color:red;width:200px;height:150px;position: absolute;overflow: hidden;} .son{ border: 4px greenyellow solid; background: #a9ea00;width:100px;height:140px;top:-148px;position: relative;} .JQson{ border: 4px greenyellow solid; background: #a9ea00;width:100px;height:140px;display:none;position: relative;} </style> <script src="http://common.cnblogs.com/script/jquery.js"></script> <script> $(function() { $("#mySlideDown").click(function() { var son = $(".son") son.css("top", -1 * son.outerHeight()) $(".son").animate({top: 0}, 1000) }) $("#jQslideDown").click(function() { // alert( $(".JQson")[0]) // $(".JQson").height(0) $(".JQson").slideDown(1000) }) }) </script> </head> <body> <table> <tr> <td width="300"> <button id="mySlideDown" type="button">我的slideDown</button> <div class="parent"> <div class="son"> <div>1111111</div> <div>2222222</div> <div>3333333</div> <div>4444444</div> <div>5555555</div> <div>6666666</div> <div>7777777</div> </div> </div> </td> <td width="300"> <button type="button"id="jQslideDown">jQslideDown</button> <div class="JQson"> <div>1111111</div> <div>2222222</div> <div>3333333</div> <div>4444444</div> <div>5555555</div> <div>6666666</div> <div>7777777</div> </div> </td> </tr> </table> </body> </html>

运行代码

点击运行可以看到效果,JQ自带的有副作用,影响到原有布局,是能过改变自身的高度实现,如果它里面的内容是用SPAN等堆砌的,它们会挤在一起,然后慢慢变成你想要的样子。 我的是通过两个元素实现的,外围与内部的等高,外围的要求overflow:hidden,防止内部的要一开始放到上方时被暴露出来。然后慢慢改变top,与现实中的窗帘降下效果一致。

<!DOCTYPE html> <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style> #hide{ overflow: hidden; width:200px; height:0px; position:relative; border:1px solid red; } #show{ position: absolute; left:0px; background: green; padding:0px; margin:0px; top:-200px; height: 100px; width:200px; } #content{ width:200px; height:200px; background: #a9ea00; } </style> <script src="http://common.cnblogs.com/script/jquery.js"></script> <script> $(function() { $("button").click(function() { var hide = $("#hide") if (hide.height()) { hide.css("overflow", "hidden") hide.animate({ height: 0 }, 1000) $("#show").animate({ top: -200 }, 1000) } else { hide.animate({ height: 200 }, 1000, function() { $(this).css("overflow", "visible") }) $("#show").animate({ top: 0 }, 1000) } }) }) </script> </head> <body> <div id="hide"> <div id="show"> <div id="content"> <div>111111111</div> <div>22222222</div> <div>333333333</div> <div>44444444444</div> <div>555555555</div> </div> </div> </div> <button type="button">toggle</button> </body> </html>

运行代码

转载地址:http://rsuax.baihongyu.com/

你可能感兴趣的文章
温故js系列(11)-BOM
查看>>
Vuex学习
查看>>
bootstrap - navbar
查看>>
切图崽的自我修养-[ES6] 编程风格规范
查看>>
服务器迁移小记
查看>>
FastDFS存储服务器部署
查看>>
Android — 创建和修改 Fragment 的方法及相关注意事项
查看>>
swift基础之_swift调用OC/OC调用swift
查看>>
Devexpress 15.1.8 Breaking Changes
查看>>
Java B2B2C多用户商城 springcloud架构- common-service 项目构建过程(七)
查看>>
杨老师课堂之ArrayList集合常用方法解析
查看>>
ElasticSearch Client详解
查看>>
新零售讲堂之时代下的传统零售业,何去何从?
查看>>
c++读取和写入TXT文件的整理
查看>>
linux安全问答(1)
查看>>
mybatis update返回值的意义
查看>>
expdp 详解及实例
查看>>
解读最具O2O属性—哈根达斯微信企业号的成功之道
查看>>
Extjs4.x (MVC)Controller中refs以及Ext.ComponentQuery解析
查看>>
Server-01 How to Find the Remote Desktop Port
查看>>