0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ドロップダウンメニュー表示時の効果を実装する(スマートフォンサイトなど)

Last updated at Posted at 2017-04-05

スマートフォンサイトでは限られたスペースを有効活用するために、画面上にハンバーガーボタンを設置して押下すると、メニューを表示するデザインを良く見ます。私もそのような効果を利用したかったんですが、OSSのライブラリやjQueryのプラグインでは不要な機能が付いていたり、デザインや利用箇所が制限されていたため自作しました。

<script type="text/javascript">
  "use strict";
  function move() {
    const view_obj = document.getElementById('smapho_menubar');
    view_obj.style.display = 'block';
    const height_size = view_obj.clientHeight;
    view_obj.style.height = "0px";
    const anime_timer = setInterval(() => {
      if(view_obj.clientHeight < height_size) {
        view_obj.style.height = view_obj.clientHeight + 10 + "px";
      } else {
        clearInterval(anime_timer);
      }
    },10);
  }
</script>

サンプルページ
サンプルページでは画面サイズで表示をCSSのメディアクエリで制御、横幅が640px以下であればスマートフォン向けのメニューを展開するリンクを表示するようにしています。

1.png

事前にメニューを作成して非表示としておき、ボタンが押下されたらメニューを縦幅0pxで表示して、少しずつ縦幅を増やしてアニメーションのように見えるように実装しています。(上記例では10msごとに10px伸ばしています)

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?