{"id":13402435,"url":"https://github.com/ilkeryilmaz/timelinejs","last_synced_at":"2025-05-16T17:04:10.922Z","repository":{"id":58231576,"uuid":"77298412","full_name":"ilkeryilmaz/timelinejs","owner":"ilkeryilmaz","description":"🎬 jQuery timeline plugin, easily creates timeline slider.","archived":false,"fork":false,"pushed_at":"2020-05-29T02:07:56.000Z","size":1731,"stargazers_count":885,"open_issues_count":6,"forks_count":118,"subscribers_count":36,"default_branch":"master","last_synced_at":"2025-05-12T16:14:49.587Z","etag":null,"topics":["chronology","jquery-plugin","jquery-timeline","jquery-timeline-plugin","milestone","timeline"],"latest_commit_sha":null,"homepage":"https://ilkeryilmaz.github.io/timelinejs/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ilkeryilmaz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-12-24T19:59:22.000Z","updated_at":"2025-05-09T13:07:33.000Z","dependencies_parsed_at":"2022-08-31T00:20:47.786Z","dependency_job_id":null,"html_url":"https://github.com/ilkeryilmaz/timelinejs","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkeryilmaz%2Ftimelinejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkeryilmaz%2Ftimelinejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkeryilmaz%2Ftimelinejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ilkeryilmaz%2Ftimelinejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ilkeryilmaz","download_url":"https://codeload.github.com/ilkeryilmaz/timelinejs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254573589,"owners_count":22093731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chronology","jquery-plugin","jquery-timeline","jquery-timeline-plugin","milestone","timeline"],"created_at":"2024-07-30T19:01:15.982Z","updated_at":"2025-05-16T17:04:10.903Z","avatar_url":"https://github.com/ilkeryilmaz.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# jQuery Timeline Plugin\njQuery timeline plugin, easily creates a timeline.\n\n![screenshoot](https://raw.githubusercontent.com/ilkeryilmaz/timelinejs/master/demo/img/example.png)\n\n## Getting Started\n\n#### 1.1. Installation with Package Managers\nTimeline.js is now setup and ready to be used with [Bower](https://bower.io/) and [NPM](https://www.npmjs.com/package/timelinejs-slider) and can be installed using the following commands.\n\n```shell\nbower install timelinejs-slider\n```\n\n```shell\nnpm install timelinejs-slider\n```\n\n#### 1.2. The Basics\nInclude the jQuery library and plugin:\n\n```html\n\u003cscript src=\"js/jquery.min.js\"\u003e\u003c/script\u003e \u003c!-- \u003e=1.11.2 --\u003e\n\u003cscript src=\"js/timeline.min.js\"\u003e\u003c/script\u003e\n```\n\nInclude the plugin css file:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"css/timeline.css\"\u003e\n```\n\n\nHtml markup:\n\n```html\n\u003cdiv class=\"timeline-container timeline-theme-1\"\u003e\n  \u003cdiv class=\"timeline js-timeline\"\u003e\n    \u003cdiv data-time=\"2017\"\u003eyour content or markup\u003c/div\u003e\n    \u003cdiv data-time=\"2016\"\u003eyour content or markup\u003c/div\u003e\n    \u003cdiv data-time=\"2015\"\u003eyour content or markup\u003c/div\u003e\n    \u003cdiv data-time=\"2014\"\u003eyour content or markup\u003c/div\u003e\n    \u003cdiv data-time=\"2013\"\u003eyour content or markup\u003c/div\u003e\n  \u003c/div\u003e\n\u003c/div\u003e\u003c!-- /.timeline-container --\u003e\n```\n\n\nStart plugin:\n\n```js\n$(function(){\n  $('.js-timeline').Timeline();\n});\n```\n\n\n## Options\n\n_Available options listed below._\n```js\n$('.timeline').Timeline({\n  autoplay: false,\n  // value: boolean | Enables Autoplay\n  autoplaySpeed: 3000,\n  // value: integer | Autoplay Speed in milliseconds\n  mode: 'horizontal',\n  // value: horizontal | vertical, default to horizontal\n  itemClass: 'timeline-item',\n  // value: item class\n  dotsClass: 'timeline-dots',\n  // value: dots item class\n  activeClass: 'slide-active',\n  // value: item and dots active class\n  prevClass: 'slide-prev',\n  // value: item and dots prev class\n  nextClass: 'slide-next',\n  // value: item and dots next class\n  startItem: 'first', // first|last|number\n  // value: first | last | number , default to first\n  dotsPosition: 'bottom',\n  // value: bottom | top, default to bottom\n  pauseOnHover: true,\n  // value: boolean | Pause Autoplay On Hover\n  pauseOnDotsHover: false,\n  // value: boolean | Pause Autoplay when a dot is hovered\n});\n```\n\n\n## Demo\n\nhttps://ilkeryilmaz.github.io/timelinejs/\n\n\n## Tasks \n\n- [x] ~~Basic plugin~~\n- [x] ~~Demo page and documentation~~\n- [ ] Migrate ES6\n- [ ] Mouse drag and touch support\n- [ ] Mobile support\n- [ ] Next/prev button\n- [ ] Advanced features (date slider, ~~autoplay~~.)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filkeryilmaz%2Ftimelinejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Filkeryilmaz%2Ftimelinejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Filkeryilmaz%2Ftimelinejs/lists"}