带有面板动画切换的jQuery:按下按钮向左滑动

时间:2013-09-06 15:14:59

标签: javascript jquery html css jquery-animate

我有这个jQuery脚本:

$(window).load(function(){
    $("#painel").click(function(){
        $("#painel").animate({
            marginLeft:'-380px'
        })

    })  
});

这个CSS:

#painel
{
    width:400px;
height:500px;

}

.btvagas
{
    position:relative;
    top:240px;
    width:160px;
    background:transparent;
}

我需要打开并隐藏面板,点击按钮(btvagas)点击动画并按照面板进行操作,如下例所示:

http://www.uprisingteen.com/2013/02/menu-aba-lateral-facil.html

任何人都可以帮助我吗?

0 个答案:

没有答案