Posted in jQuery onApril 26, 2018
本文实例讲述了jQuery实现DIV响应鼠标滑过由下向上展开效果。分享给大家供大家参考,具体如下:
鼠标浮动时div由下向上缓慢展开效果
1. 演示效果(鼠标浮动时div由下向上展开,浮动后div由上向下折叠恢复原样)
2. 代码
<!doctype html> <html> <head> <meta charset="utf-8"> <title>3water.com jQuery响应鼠标实现div由下向上展开</title> <style type="text/css"> .big{position:relative; width:234px; height:300px; background:#ccc} .show{position:absolute; display:none; bottom:0px;display:block; width:100%; height:auto; background:#f66 } </style> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function() { $(".big").hover(function () { $(".show").stop(true,true).animate({height:"70px"}); }, function () { $(".show").stop(true,true).animate({height:"0px"}); }); }); </script> </head> <body> <!--灰色的div--> <div class="big"> <!--红色的div--> <div class="show"></div> </div> </body> </html>
原理:
① 首先红色div是通过position:absolute
绝对定位的,且通过相对与底部定位,如bottom:0px
。
② 底部定位固定,高度变高的时候就向上扩展了。
③ 使用jQuery的$().animate()
动画方法,控制红色div高度变化。
希望本文所述对大家jQuery程序设计有所帮助。
jQuery实现DIV响应鼠标滑过由下向上展开效果示例【测试可用】
- Author -
qq_36410795声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@