仿新浪手机版首页那个菜单栏,点击箭头展开,点击箭头首页,在不改变结构和样式的情况下,求js效果

 我来答
w3260300
2016-07-28 · TA获得超过2653个赞
知道大有可为答主
回答量:2202
采纳率:67%
帮助的人:495万
展开全部

很多种做法,我写个简单的给你,css和html自己去改

html:

<div class="demo">
    <a class="open" href="#">展开</a>
    <a class="close" href="#">关闭</a>
</div>

css:

.demo{width: 500px;height: 100px;margin: 100px auto;background: #0075d5;position: relative;}
.demo a{color: #fff;position: absolute;right: 10px;bottom: 10px;}
.demo .close{display: none;}

jQuery:

$(".open" ).click(function(){
    $(this ).hide().siblings(".close" ).show();
    $(".demo" ).animate({height:'300px'},200);
    return false;
});
$(".close" ).click(function(){
    $(this ).hide().siblings(".open" ).show();
    $(".demo" ).animate({height:'100px'},200);
    return false;
});
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式