DEV Community

Cover image for Tailwind Timepicker
Keep Coding
Keep Coding

Posted on

Tailwind Timepicker

Responsive time picker built with the latest Tailwind. Select and set a specific time value from a pre-determined set in a popup panel.


Installation

Quick Start

In order to start using Tailwind simply download our starter.

DOWNLOAD ZIP STARTER

Tailwind Elements does not change or add any CSS to the already one from TailwindCSS.

You can directly copy our components into your Tailwind design and they will work straight away.

In some dynamic components (like dropdowns or modals) we add Font Awesome icons and custom JavaScript. However, they do not require any additional installation, all the necessary code is always included in the example and copied to any Tailwind project - it will work.


MDB GO


Customization

Basic example
HTML
<div class="flex justify-center">
<div class="mt-2 p-5 w-40 bg-white rounded-lg shadow-xl">
  <div class="flex">
    <select
      name="hours"
      class="bg-transparent text-xl appearance-none outline-none"
    >
      <option value="1">1</option>
      <option value="2">2</option>
      <option value="3">3</option>
      <option value="4">4</option>
      <option value="5">5</option>
      <option value="6">6</option>
      <option value="7">7</option>
      <option value="8">8</option>
      <option value="9">9</option>
      <option value="10">10</option>
      <option value="11">10</option>
      <option value="12">12</option>
    </select>
    <span class="text-xl mr-3">:</span>
    <select
      name="minutes"
      class="bg-transparent text-xl appearance-none outline-none mr-4"
    >
      <option value="0">00</option>
      <option value="30">30</option>
    </select>
    <select
      name="ampm"
      class="bg-transparent text-xl appearance-none outline-none"
    >
      <option value="am">AM</option>
      <option value="pm">PM</option>
    </select>
  </div>
</div>
</div>
Enter fullscreen mode Exit fullscreen mode

You can see more customization examples on the πŸ“„ Timepicker documentation page


Crucial Resources

Here are the resources that we have prepared to help you work with this component:

  1. Read πŸ“„ Timepicker documentation page <-- start here
  2. In to get the most out of your project, you should also get acquainted with other Forms options related to Timepicker. See the section below to find the list of them.
  3. After finishing the project you can publish it with CLI in order to receive πŸ’½ Free hosting (beta)

Related Forms options & features


Additional resources

Learn web development with our learning roadmap:
πŸŽ“ Start Learning

Join our mailing list & receive exclusive resources for developers
🎁 Get gifts

Join our private FB group for inspiration & community experience
πŸ‘¨β€πŸ‘©β€πŸ‘§β€πŸ‘¦ Ask to join

Support creation of open-source packages with a STAR on GitHub
GitHub stars

Top comments (0)