{"id":17133272,"url":"https://github.com/gilbox/kinetic-slider","last_synced_at":"2025-09-02T00:35:50.680Z","repository":{"id":14705056,"uuid":"17425345","full_name":"gilbox/kinetic-slider","owner":"gilbox","description":"Kinetic Slider for AngularJS","archived":false,"fork":false,"pushed_at":"2014-09-30T04:49:21.000Z","size":881,"stargazers_count":11,"open_issues_count":1,"forks_count":4,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-13T10:42:50.693Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CoffeeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gilbox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-03-05T02:28:30.000Z","updated_at":"2022-06-25T16:23:08.000Z","dependencies_parsed_at":"2022-07-12T15:13:24.893Z","dependency_job_id":null,"html_url":"https://github.com/gilbox/kinetic-slider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gilbox/kinetic-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilbox%2Fkinetic-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilbox%2Fkinetic-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilbox%2Fkinetic-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilbox%2Fkinetic-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gilbox","download_url":"https://codeload.github.com/gilbox/kinetic-slider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gilbox%2Fkinetic-slider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273213924,"owners_count":25065058,"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","status":"online","status_checked_at":"2025-09-01T02:00:09.058Z","response_time":120,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-10-14T19:41:48.001Z","updated_at":"2025-09-02T00:35:50.605Z","avatar_url":"https://github.com/gilbox.png","language":"CoffeeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"**Note:** **This project is no longer being maintained**. If you're interested in this project, you should really look at my fork  [infinite-slider](https://github.com/gilbox/infinite-slider). It has many more features and has undergone significant QA testing.\n\nkinetic-slider\n==============\n\nIf you'd like to contribute to this project, PRs are appreciated.\n\n#How do I add this to my project?\n\nYou can download this by:\n\n* Using bower and running `bower install kinetic-slider`\n* Downloading [the zip file](https://github.com/gilbox/kinetic-slider/archive/master.zip)\n\n\n#Dependencies\n\nkinetic-slider depends on Angular, [angular-mousewheel](https://github.com/monospaced/angular-mousewheel), and [hamsterjs](https://github.com/monospaced/hamster.js).\n\n\n# Getting Started\n\nYou need the following script tags:\n\n````html\n\u003cscript src=\"vendor/hamster.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"vendor/mousewheel.js\"\u003e\u003c/script\u003e\n\u003cscript src=\"gilbox-kinetic-slider.js\"\u003e\u003c/script\u003e\n````\n\nAdd kinetic-slider as a dependency to your app:\n\n````javascript\nangular.module('myApp', ['gilbox.kineticSlider']);\n````\n\nNote that in your HTML you may optionally provide the content-width,\notherwise it will be calculated automatically as shown here:\n\n````html\n  \u003cdiv kinetic-slider class=\"kinetic-slider-container\"\u003e\n    \u003cdiv class=\"kinetic-slider-content\"\u003e\n\n      \u003c!-- content goes here --\u003e\n\n    \u003c/div\u003e\n  \u003c/div\u003e\n````\n\nSome minimal styling is required:\n\n````css\n.kinetic-slider-container {\n  position: relative;\n  z-index: 1;\n  width: 100%;\n  height: 400px;\n  overflow: hidden;\n}\n\n.kinetic-slider-content {\n  position: absolute;\n  z-index: 1;         // note: make sure you set a z-index\n  width: 100%;\n  height: 400px;\n}\n````\n\n# Demo\n\nCheck out [the demo](http://gilbox.github.io/kinetic-slider/)\n\n# License\n\nThe MIT License\n\nCopyright (c) 2013 Gil Birman http://gilbox.me/\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilbox%2Fkinetic-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgilbox%2Fkinetic-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgilbox%2Fkinetic-slider/lists"}