{"id":23869471,"url":"https://github.com/fredwu/jquery-slideshow-lite","last_synced_at":"2025-09-08T19:31:13.925Z","repository":{"id":741593,"uuid":"392484","full_name":"fredwu/jquery-slideshow-lite","owner":"fredwu","description":"An extremely lightweight slideshow plugin for jQuery.","archived":false,"fork":false,"pushed_at":"2012-03-28T00:10:08.000Z","size":1509,"stargazers_count":14,"open_issues_count":1,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-09T05:06:22.802Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://www.beyondcoding.com/2009/08/04/release-jquery-plugin-slideshow-lite/","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/fredwu.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":"2009-12-02T06:47:36.000Z","updated_at":"2023-02-21T06:53:38.000Z","dependencies_parsed_at":"2022-08-16T10:45:25.685Z","dependency_job_id":null,"html_url":"https://github.com/fredwu/jquery-slideshow-lite","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"purl":"pkg:github/fredwu/jquery-slideshow-lite","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredwu%2Fjquery-slideshow-lite","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredwu%2Fjquery-slideshow-lite/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredwu%2Fjquery-slideshow-lite/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredwu%2Fjquery-slideshow-lite/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fredwu","download_url":"https://codeload.github.com/fredwu/jquery-slideshow-lite/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fredwu%2Fjquery-slideshow-lite/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274231438,"owners_count":25245585,"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-08T02:00:09.813Z","response_time":121,"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":"2025-01-03T12:35:30.481Z","updated_at":"2025-09-08T19:31:13.044Z","avatar_url":"https://github.com/fredwu.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Lightweight Slideshow plugin for jQuery [![endorse](http://api.coderwall.com/fredwu/endorsecount.png)](http://coderwall.com/fredwu)\n\nA while ago I was asked to make a simple slideshow. My initial thought was, there must be a ton of solutions available for jQuery, I could easily draw inspiration from them.\n\nI was wrong. Whilst there are a few nicely done slideshow plugins for jQuery, the majority of them are either poorly written or far too complicated.\n\nSo, I decided to code my own plugin from the ground up. Meet __Slideshow Lite__!\n\n## Configuration\n\nThere are a few options to customise the behaviour of this plugin:\n\n\u003ctable\u003e\n  \u003ctr\u003e\n    \u003ctd\u003e\u003cstrong\u003eOption\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cstrong\u003eType\u003c/strong\u003e\u003c/td\u003e\n    \u003ctd\u003e\u003cstrong\u003eDescription\u003c/strong\u003e\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003epauseSeconds\u003c/td\u003e\n    \u003ctd\u003eFloat\u003c/td\u003e\n    \u003ctd\u003eNumber of seconds between each photo to be displayed.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003efadeSpeed\u003c/td\u003e\n    \u003ctd\u003eFloat\u003c/td\u003e\n    \u003ctd\u003eNumber of seconds for the fading transition, the value should not exceed `pauseSeconds`.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ewidth\u003c/td\u003e\n    \u003ctd\u003eInteger\u003c/td\u003e\n    \u003ctd\u003eWidth of the slideshow, in pixels.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eheight\u003c/td\u003e\n    \u003ctd\u003eInteger\u003c/td\u003e\n    \u003ctd\u003eHeight of the slideshow, in pixels.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ecaption\u003c/td\u003e\n    \u003ctd\u003eBoolean\u003c/td\u003e\n    \u003ctd\u003eDisplay photo caption?\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003ecssClass\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003eName of the CSS class, defaults to `slideshowlite`.\u003c/td\u003e\n  \u003c/tr\u003e\n  \u003ctr\u003e\n    \u003ctd\u003eanchorTarger\u003c/td\u003e\n    \u003ctd\u003eString\u003c/td\u003e\n    \u003ctd\u003eName for the target=\"_xxx\" attribute, defaults to `_self`.\u003c/td\u003e\n  \u003c/tr\u003e\n\u003c/table\u003e\n\n## Usage\n\n``` js\n// using default options\n$(\"#slideshow\").slideshow();\n\n// using some custom options\n$(\"#slideshow2\").slideshow({\n  pauseSeconds: 4,\n  height: 200,\n  caption: false\n});\n```\n\n## Demo\n\n[Click here for a simple demo](http://fredwu.github.com/jquery-slideshow-lite/).\n\n## Changelog\n\nv0.8.1 [2011-07-19]\n\n- Use HTML5's data attribute `data-seq` instead of `rel` to store sequence data.\n\nv0.8.0 [2011-06-28]\n\n- Added readme to the repository.\n- Updated jQuery to 1.6.1.\n\nv0.7.1 [2010-12-10]\n\n- Pagination clicks should not cause the page to return to the top.\n\nv0.7.0 [2010-12-07]\n\n- Added `anchorTarget` option and fixed the way anchor tags are created.\n\nv0.6.1 [2010-11-18]\n\n- Code clean up.\n\nv0.6.0 [2010-11-18]\n\n- It now supports multiple slideshows targeted via DOM class selectors.\n- Get rid of the use of children().\n\nv0.5.4 [2010-11-12]\n\n- Fixed a transition bug when there's only 2 images.\n- Updated jQuery to 1.4.4.\n\nv0.5.3 [2009-12-02]\n\n- Added `fadeSpeed` for setting the transition speed.\n\nv0.5.2 [2009-12-02]\n\n- Repackaged to remove an unnecessary `.htaccess` file.\n\nv0.5.1 [2009-12-02]\n\n- Fixed some typo.\n\nv0.5.0 [2009-12-02]\n\n- Major rewrite: slides can now be clicked freely (as opposed to waiting for one to finish showing before it can be clicked again)\n- Added automatic photo caption\n\nv0.4.0 [2009-12-02]\n\n- Code clean up.\n- Added transparency effects to the navigation, to indicate when it is clickable.\n- Added inline configuration documentation.\n\nv0.3.0 [2009-12-02]\n\n- Smoother animation.\n\nv0.2.0 [2009-12-02]\n\n- Fixed a navigation bug where the clicks no longer work after clicking on the current slideshow.\n\nv0.1.0 [2009-12-02]\n\n- Initial release.\n\n## More jQuery Plugins\n\nCheck out my other jQuery plugins:\n\n- [Endless Scroll](https://github.com/fredwu/jquery-endless-scroll) - Endless/infinite scrolling/pagination.\n- [Inline Confirmation](https://github.com/fredwu/jquery-inline-confirmation) - One of the less obtrusive ways of implementing confirmation dialogues.\n\n## License\n\nCopyright (c) 2009-2012 Fred Wu\n\nDual licensed under the [MIT](http://www.opensource.org/licenses/mit-license.php) and [GPL](http://www.gnu.org/licenses/gpl.html) licenses.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffredwu%2Fjquery-slideshow-lite","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffredwu%2Fjquery-slideshow-lite","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffredwu%2Fjquery-slideshow-lite/lists"}