网上有很多从上往下展开的,但对于从下往上的就比较少
该代码也可以修改为点击菜单展开
元素模板为您解答 代码如下
<!doctype html> <html> <head> <meta charset="utf-8"> <title>www.jb51.net 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>