为什么我的JQuery推送菜单不能突然工作?

时间:2014-06-21 19:26:08

标签: javascript jquery html css jpanelmenu

我的网站目前配备了以前是一个功能齐全的推送菜单,但现在突然之后玩了css,它并不想工作。我将提供我的代码:

HTML

<div id="right">

  <div id="Top">

     <div id="menubar">

        <a id="menubarheader">DrumCenter</a>

        <a href="#menu" id="button" class="buttonicon"></a>

        <a href="#" id="searchlink" class="searchlink"></a>

     </div>

  </div>

</div>

CSS

#right {

width: 100%;

background-color: #fff;

z-index: 5;

position: fixed;

left: 0px;

margin: 0px;

height: 100%;

-webkit-box-shadow:  -5px 0px 4px 0px rgba(0, 0, 0, 0.2);
    moz-box-shadow:  -5px 0px 4px 0px rgba(0, 0, 0, 0.2);
      o-box-shadow:  -5px 0px 4px 0px rgba(0, 0, 0, 0.2);
        box-shadow:  -5px 0px 4px 0px rgba(0, 0, 0, 0.2);

}

#menu {

float:left;

width: 80%;

height: 100%;

}

#menu li {

background-color: white;

border-bottom: 1px solid #c8c8c8;

}

#Top {

width: inherit;

height: 80px;

margin: 0px;

}

#menubar, #menubarheader {

    width: inherit;

    height: 80px;

}

#menubar {

    min-width: 250px;

    position: absolute;

    background: #fff;

    border-bottom: 3px solid #ABABA0;

line-height: 80px;

}

#button, #menubarheader, #searchlink {

    position: absolute;

    vertical-align: middle;

    font-weight: lighter;

}

#button {

    text-decoration: none;

    padding-left: 5%;

}

.buttonicon {

font-family: "glyphs";

    text-decoration: none;

    font-size:  230%;

    color: gray;

}

.buttonicon:before {

content: "\e696";

}

#searchlink{

    text-decoration: none;

    padding-left: 87%

}

.searchlink{

font-family: "icomoon";

    text-decoration: none;

    font-size:  150%;

    color: gray;

}

.searchlink:before {

content: "\e67f";

}

#menubarheader {

    text-align: center;

    color: #0099FF;

    font-size: 200%;

    vertical-align: middle;

}

的Javascript

$('#button').toggle( 
        function() {
            $('#right').animate({ left: 250 }, 'fast', function() {
                $('#button');
            });
        }, 
        function() {
            $('#right').animate({ left: 0 }, 'fast', function() {
                $('#button');
            });
        }
    );

在你问之前,是的,我已经在我的HTML中链接了正确的jquery,我只是没有在这里提供它。我想知道的是为什么这已经停止工作,以及我如何解决这个问题?我对此非常困惑。谢谢!如果你想看我正在谈论的网站,你可以去(http://www.codesrce.com/thedrumcenter)但是如果你的屏幕宽度是1399像素或更低,你只能看到我在说什么,因为这是移动网站。

1 个答案:

答案 0 :(得分:0)

您在加载jQuery之前编写脚本,剪切它然后在调用所有<script></script>标记后粘贴它,它将被修复!