npm
npm install jquery-timelinebower
bower install jquery-timelineCreate a div container
<div id="timeline"><div>Initialize the Timeline
$("#timeline").timeline({
// options
}); // Returns a jQuery objectOR
$.timeline({
container: $("#timeline")
// more options
}); // Returns Timeline objectOR even
new JQueryTimeline.Timeline({
container: $("#timeline")
// more options
}); // Returns Timeline objectYou can either do it through jQuery selector
$("#timeline").timeline("addLine", {color: "indigo"});or by calling methods of Timeline object
timeline.addLine({color: "indigo"});container: JQuery[optional]zoom: number[optional] — zoom level, default: 100scale: number[optional] — horizontal chart scale, default: 1minorSections: number[optional] — number of minor sections, default: 5lines: Array<LineOptions>[optional]events: Array<EventOptions>[optional]
Zoom is a floating point number in range 0 < zoom <= (1000 / minorSections). It defines a size of guide line major section in years.
For example, for zoom=100, will result in 1000 / 100 = 10 years in each major section. (Here 1000 is a zoom base constant)
Line is a group of events
color: string[optional] — any CSS compatible color value likeredor#FF0000events: Array<EventOptions>[optional]
Event is a history event, which could be either a single event or a date range
label: string— event short label (shown on timeline)start: string— a date when an event had happened or started, allowed formats: YYYY, MM-YYYY, DD-MM-YYYY, BC dates should be prefixed with "-", e.g "-372", or "-01-07-372"length: number[optional] — event length in yearsend: string[optional] — a date when an event ended, allowed formats: YYYY, MM-YYYY, DD-MM-YYYYcolor: string[optional] — any CSS compatible color value likeredor#FF0000, overwrites color defined in line options, default:grayname: string[optional] — event full name (shown in the tooltip)description: string[optional] — event detailed description (shown in the tooltip)
Only one of length or end options required. If both provided length has higher priority.
single event is an event which had happened on a single date or ended withing the same year.
addLine(LineOptions): JQueryaddEvent(EventOptions): JQuery — adds event to the last lineaddEvent(EventOptions, line: number): JQuery — adds event to the line with indexlinescrollTo(year: number)— scrolls timeline to specifie year
Released under the MIT license.