facebook twitter hatena line email

Javascript/jqueryライブラリ/slidebars.js

提供: 初心者エンジニアの簡易メモ
2016年5月13日 (金) 06:55時点におけるAdmin (トーク | 投稿記録)による版 (サンプル)

移動: 案内検索

slidebarsとは

  1. jquery用
  2. スマホ左メニュードロワー
  3. スマホ右メニュードロワー

download

https://github.com/adchsm/Slidebars/archive/0.10.3.tar.gz
tar zxvf 0.10.3

サンプル

<!DOCTYPE html>
<html lang="ja">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<link rel="stylesheet" href="Slidebars-0.10.3/dist/slidebars.min.css">
<script src="Slidebars-0.10.3/dist/slidebars.min.js"></script>
<script>
 (function($) {
   $(document).ready(function() {
      $.slidebars();
   });
 }) (jQuery);
</script>
<style>
.sb-slidebar.sb-left {
 -webkit-overflow-scrolling: touch;
}
.sb-left-inner {
 width: 100%;
 height: 100%;
 overflow-y: auto;
}
</style>
</head>
<body>
  <nav>
  • <a href="">Google +</a>
  </nav>
</body>
</html>

参考

  1. http://glow-factory.com/blog_web/jquery/slidebars/
  2. http://blog.mismithportfolio.com/web/20160105slidebarsjs