LoginSignup
1
1

More than 5 years have passed since last update.

カレンダーライブラリ flatpickr.js で、月を横に複数個並べるオプション

Posted at

flatpickr.js

Documentation: https://flatpickr.js.org/

image.png

flatpickr.js を使いつつ、一度に複数月を表示する

ライブラリの使い方は割愛しますが、以下オプションで設定できます。
※ すでにリリースされていますが、ドキュメントに記載がありませんでした。

{
  showMonths: 3
}

DEMO

document.querySelector(".flatpickr").flatpickr({
  inline: true,
  showMonths: 3,
});

ちなみに

jQuery UI の Datepicker でいう numberOfMonths です。

1
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
1
1