{"id":23156554,"url":"https://github.com/thecreation/jquery-tinyslider","last_synced_at":"2025-08-17T23:32:39.206Z","repository":{"id":5667915,"uuid":"6877481","full_name":"thecreation/jquery-tinySlider","owner":"thecreation","description":"tinySlider.js is a tiny jQuery plugin that creates a responsive slider with touch support.","archived":false,"fork":false,"pushed_at":"2019-10-11T15:23:23.000Z","size":1200,"stargazers_count":5,"open_issues_count":1,"forks_count":6,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-05T15:46:06.306Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/thecreation.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-GPL","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-11-27T04:29:23.000Z","updated_at":"2016-06-01T12:42:02.000Z","dependencies_parsed_at":"2022-07-07T04:32:13.984Z","dependency_job_id":null,"html_url":"https://github.com/thecreation/jquery-tinySlider","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/thecreation/jquery-tinySlider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecreation%2Fjquery-tinySlider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecreation%2Fjquery-tinySlider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecreation%2Fjquery-tinySlider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecreation%2Fjquery-tinySlider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thecreation","download_url":"https://codeload.github.com/thecreation/jquery-tinySlider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thecreation%2Fjquery-tinySlider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270922510,"owners_count":24668565,"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-08-17T02:00:09.016Z","response_time":129,"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-12-17T21:13:58.309Z","updated_at":"2025-08-17T23:32:38.888Z","avatar_url":"https://github.com/thecreation.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TinySlider\n\ntinySlider is a tiny jQuery plugin that creates a responsive slider with touch support.\n\n## Usage\n\nYou can include javascript file and css first:\n\n```html\n\u003clink rel=\"stylesheet\" href=\"path/to/your/tinySlider.css\"\u003e\n\u003cscript src=\"path/to/your/jquery-tinyslider.min.js\"\u003e\u003c/script\u003e\n```\n\nThen init the slider for the structure\n\n```html\n\u003cdiv class=\"slides\"\u003e\n\t\u003cul\u003e\n\t\t\u003cli\u003e\n\t\t  \u003cimg src=\"img/1.jpg\" /\u003e\n\t\t\u003c/li\u003e\n\t\t\u003cli\u003e\n\t\t  \u003cimg src=\"img/2.jpg\" /\u003e\n\t\t\u003c/li\u003e\n\t\t\u003cli\u003e\n\t\t  \u003cimg src=\"img/3.jpg\" /\u003e\n\t\t\u003c/li\u003e\n\t\u003c/ul\u003e\n\u003c/div\u003e\n\u003cscript\u003e\njQuery(function($) {\n  $('.slides').tinySlider();\n});\n\u003c/script\u003e\n```\n\n### Options\n\nYou're also able to use some of the options that let you customize it as you wish:\n\n```javascript\n$('element').tinySlider({\n\tnamespace: 'tiny', // String: Prefix string attached to the class of every element generated by the plugin\n\n\tanimation: \"fade\", // String: Select your animation type, \"fade\" or \"slide\"\n\teasing: \"swing\",\n\tduration: 1000, // Integer: Duration of the transition, in milliseconds\n\tdelay: 4000, // Integer: Time between slide transitions, in milliseconds\n\n\tpager: true, // Boolean: Show pager, true or false\n\tnav: true, // Boolean: Show navigation, true or false\n\tprevText: \"Previous\", // String: Text for the \"previous\" button\n\tnextText: \"Next\", // String: Text for the \"next\" button\n\n\trandom: false, // Boolean: Randomize the order of the slides, true or false\n\tautoplay: true, // Boolean: Animate automatically, true or false\n\tpauseOnHover: true, // Boolean: Pause the slideshow when hovering over slider\n\n\tuseCSS: true, // if use CSS transition, cycle will not works\n\ttouch: true,\n\ttouchSensitivity: 0.25,\n\n\t// Callback API\n\tonStart: null, // Callback: function(slider) - Fires when the slider loads the first slide\n\tonBefore: null, // Callback: function(slider) - Fires asynchronously with each slider animation\n\tonAfter: null, // Callback: function(slider) - Fires after each slider animation completes\n\tonEnd: null // Callback: function(slider) - Fires when the slider reaches the last slide (asynchronous)\n});\n```\n\n## License\nCopyright (c) 2015 AmazingSurge  \nLicensed under the GPL license.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecreation%2Fjquery-tinyslider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecreation%2Fjquery-tinyslider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecreation%2Fjquery-tinyslider/lists"}