1

SlidePanel という jquery プラグインの使用に問題がありました。見栄えの良いスライド アウト メニューですが、うまく機能しません。手順は少しまばらに見えます。間違っていたのか、それとも機能していないのかわかりません。

SlidePanel - http://codebomber.com/jquery/slidepanel/

<!DOCTYPE HTML>
<html>
   <head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
      <title>iON | Home</title>
      <link rel="stylesheet" type="text/css" href="/css/web.css" />
      <link rel="stylesheet" type="text/css" href="/css/fonts.css" />
      <link rel="stylesheet" type="text/css" href="/css/jquery.slidepanel.css">
      <script type="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
      <script type="text/javascript" src="/js/jquery.slidepanel.js"></script>


   </head>
<body>
   <nav>
      <ul>
         <li><a id="title" href="index.php">iON»</a></li>
         <li style="float: right;"><a id="menu" href="#"><img src="/images/menu.png" height="20" width="20" /></a>
            <ul>
               <li><a href="profile.php">Profile</a></li>
               <li><a href="login.php">Login</a></li>
            </ul>
         </li>
      </ul>
   </nav>

<div class="content">
<a href="index.php" data-slidepanel="panel">Show Panel</a>
</div>

<script type="text/javascript">
      $(document).ready(function(){
          $('[data-slidepanel]').slidepanel({
              orientation: 'top',
              mode: 'push'
          });
      });
</script>

</body>
</html>
4

1 に答える 1