Coder Social home page Coder Social logo

jqtimeline's Introduction

jqtimeline : A timeline Plugin for jQuery

See a demo and examples here

jquery.jqtimeline is a lightweight, simple and elegent timeline plugin for jQuery to show a set of important events on a timeline. Data input is a simple json arrary of timeline events. This plugin can be easily integrated with any other jQuery plugins. Can be use to create Social apps, showing blog timeline, social posts timeline etc.

Requirements

Usage

$('#someDiv').jqtimeline(options);

options is an optional javascript object with parameters explained below.

Options

  • startYear int : The stating year of the timeline. default: current_year - 1

  • numYears int : Number of years to be shown on the timeline default: 3

  • gap int : This is the distance between the lines on the timeline (in px). If you increase this value length of timeline is increased. default: 25

  • showToolTip boolean : To showtooltip when user hovers on an event on timeline. default: true

  • groupEventWithinPx int : If the events are very close to each other on the timeline its hard for a user to click on an specific event. This attribute is use to group events within specific px range to show a common tooltip. Check the demo to know more default: 6

  • events Arrar[] : Array of events to be shown on the timeline. Dont confuse this with javascript/jquery event object. The format of event object is given in next section. default: null

  • click function : The function to be called when a user clicked on a specific event. This function is passed with jQuery Event object and the Timeline event object. default: null

Example :

$('#myTimeline').jqtimeline({
							numYears:4,
							startYear:2011,
							click:function(e,event){
								alert(event.name);
							}
						});

Timeline Event object

var eventObj = {id:*unique_id*, name:*name_of_the_event*,on:*date_on_which_event_occured*};

Methods

After initializing the plugin the plugin object is stored in the html element as jquery data so that you can get it to invoke any method.

$('#someDiv').jqtimeline(options);

To get the plugin object simple do the following :

var timelineObj = $('#someDiv').data('jqtimeline');
timelineObj.method();

Where method can be any of the following :

  • addEvent([event_obj]) Use to dynamically add timeline event to timeline. Argument can be an Event Object or array of Event Object

     var eventObj = {id=1, name="Dummy Event",on : new Date()};
     timelineObj.addEvent(eventObj);
  • deleteEvent Delete a timeline Event from the timeline. Pass the event id or arrayof id to delete event from timeline

     timelineObj.deleteEvent(1);
     timelineObj.deleteEvent([2,3,4]); // Will delete event with id 2,3 and 4
  • getAllEvents Get all the event as an array present on the timeline.

     timelineObj.getAllEvents();
  • getAllEventsElements Get all the Html elements shown as events on the timeline. Use to attach an event handler or what ever you want to do with them

     timelineObj.getAllEventsElements();

This software is made available under the open source MIT License. © 2012 Gaurav Tiwari

jqtimeline's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

jqtimeline's Issues

Demo page down

I can't see anything on the demo page. What happened?

Screenshots

I asked this of another timeline plugin -
Can you post some screenshots of this plugin on the ReadMe since the website is down?

Be able to give a desired precision

Hi,

Thanks for your work. Just to say it'd be great to be able to give the precision we want as a parameter, like 'month', 'day', 'week', for the timeline.

Pierre

Typo on line 223

'<div>Select one even from below : </div>' +
should be '<div>Select one event from below : </div>' +

Being able to change precision

Hi there !

I'm using your timeline in our of my little project and it works perfectly ! However, I'm looking for a way to specify the timeframe in days and not years.

I have to show the next 30 days in a timeline and as I understand JQTimeline, it supports 1 year timeframe minimum.

Is there any solution to be able to specify it in days ?

Thank you !

Guireg

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.