🔔 Alert..!! Get 2 Month Free Cloud Hosting With $200 Bonus From Digital Ocean ACTIVATE DEAL

A dynamic, interactive, responsive, touch-friendly, SEO-friendly timeline that makes it possible to displays event data in a horizontal slider interface.

Timeline

Documentation

Horizontal Timeline 2.0

by yCodeTech

Twitter @yCodeTech

Horizontal Timeline 2.0, is a fully customisable jQuery adaptation of a JavaScript plugin originally created by CodyHouse, to create a dynamic timeline on the horizontal axis.

Version 2.0 adds functionality that has been previously requested for the original version, and more:

  • Transformed into a jQuery plugin, with support for multiple timeline instances utilising ID's.
  • Uniform event date intervals replaces the scattered style.
  • Added new minimal first date interval.
  • Renamed prev/next buttons to scroll-left/scroll-right to reflect their functionality.
  • Added new prev/next buttons to change the event content.
  • Added new inactive button states.
  • Minimal HTML setup, meaning the plugin creates the timeline dynamically according to the total amount of event content.
  • Event dates can now be displayed in various ways: dateTime, date, time, dayMonth, monthYear, year.
  • Added new autoplay feature with pause/play buttons and adjustable speed.
  • Added on hover pause/play functionality for autoplay.
  • Added a progress bar for autoplay.
  • Added new go-to timeline link with customisable scroll functionality.
  • Added mouse-wheel support for scrolling the event content.
  • Added TouchSwipe functionality for touch devices.
  • Added new refresh, destroy, addEvent, removeEvent methods.
  • Added a new option to disable the loading of the required files.
  • Added new options for the button icons.

For full documentation please check out the Horizontal Timeline 2.0 website

Setup

<head>     // Add horizontal_timeline.2.0.min.css      <link rel="stylesheet" type="text/css" href="CSS/horizontal_timeline.2.0.min.css">      // OR add via jsdilvr CDN via the Github repo     <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/ycodetech/horizontal-timeline-2.0@2/css/horizontal_timeline.2.0.min.css">      // Add jQuery      <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>      // Add horizontal_timeline.2.0.min.js     <script src="JavaScript/horizontal_timeline.2.0.min.js"></script>      // OR add via jsdilvr CDN via the Github repo     <script src="https://cdn.jsdelivr.net/gh/ycodetech/horizontal-timeline-2.0@2/JavaScript/horizontal_timeline.2.0.min.js"></script>    </head> 

The easiest way to link the files in your document is to add them via jsdilvr CDN. Otherwise, you can download them from here on Github.

Unlike the original, 2.0 dynamically creates the timeline according to the amount of event content there is. Making it even simplier to setup! All you need to do is create the event content…

<div class="horizontal-timeline" id="example">    <div class="events-content">       <ol>          <li class="selected" data-date="16/01/2014">             // Event description here          </li>          <li data-date="23/05/2015">             // Event description here          </li>          …etc.       </ol>    </div> </div>

And then initialise the timeline with jQuery using the default options.

<script> $('#example').horizontalTimeline(); </script>

Options

/* The Defaults */  $('#example').horizontalTimeline({    desktopDateIntervals: 200,   //************\\    tabletDateIntervals: 150,   // Minimum: 120 \\    mobileDateIntervals: 120,  //****************\\    minimalFirstDateInterval: true,     dateDisplay: "dateTime",  // dateTime, date, time, dayMonth, monthYear, year     autoplay: false,    autoplaySpeed: 8,  // Sec    autoplayPause_onHover: false,      useScrollWheel: false,    useTouchSwipe: true,    useKeyboardKeys: false,    addRequiredFile: true,    useFontAwesomeIcons: true, 			    iconBaseClass: "fas fa-3x",    scrollLeft_iconClass: "fa-chevron-circle-left",    scrollRight_iconClass: "fa-chevron-circle-right",    prev_iconClass: "fa-arrow-circle-left",    next_iconClass: "fa-arrow-circle-right",    pause_iconClass: "fa-pause-circle",    play_iconClass: "fa-play-circle" });

Check out the docs.

To do:
  • Add support for custom slide animations/transitions using Animate.css
  • Implement a namespaced object data attribute to accomodate the data-date and possibly the custom animations.
  • Add method to dynamically change existing dates and reposition them to reflect their new date order.
  • Add support for Right-to-Left.
  • Add support for disabling the nav buttons.

You May Also Like