{"id":16007381,"url":"https://github.com/pkolt/jquery-slider","last_synced_at":"2025-07-24T00:33:23.627Z","repository":{"id":139652862,"uuid":"3568921","full_name":"pkolt/jquery-slider","owner":"pkolt","description":null,"archived":false,"fork":false,"pushed_at":"2012-02-28T11:37:13.000Z","size":100,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-20T08:45:08.729Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","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/pkolt.png","metadata":{"files":{"readme":"README.rst","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":"2012-02-28T07:10:21.000Z","updated_at":"2014-04-27T11:36:53.000Z","dependencies_parsed_at":"2023-03-13T10:46:15.164Z","dependency_job_id":null,"html_url":"https://github.com/pkolt/jquery-slider","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/pkolt/jquery-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkolt%2Fjquery-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkolt%2Fjquery-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkolt%2Fjquery-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkolt%2Fjquery-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pkolt","download_url":"https://codeload.github.com/pkolt/jquery-slider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pkolt%2Fjquery-slider/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266774778,"owners_count":23982246,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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-08T12:03:08.149Z","updated_at":"2025-07-24T00:33:23.575Z","avatar_url":"https://github.com/pkolt.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"============================\nMedia Slider - jQuery Plugin\n============================\n\nEasy start\n==========\nHhtml page::\n\n    \u003c!DOCTYPE html\u003e\n    \u003chtml\u003e\n\n    \u003chead\u003e\n        \u003ctitle\u003eMy page\u003c/title\u003e\n        \u003clink rel=\"stylesheet\" href=\"slider/jquery.slider.min.css\"\u003e\n        \u003cscript src=\"jquery-1.7.1.min.js\"\u003e\n        \u003cscript src=\"slider/jquery.slider.min.js\"\u003e\n        \u003cscript\u003e\n        $(function(){\n            $.slider.autoload();\n        });\n        \u003c/script\u003e\n    \u003c/head\u003e\n    \n    \u003cbody\u003e\n        \u003cdiv class=\"md-slider\" style=\"width:860px;height:400px\"\u003e\n        \u003cul class=\"md-slider-source\"\u003e\n            \u003cli\u003e\u003ca href=\"image1.png\"\u003e\u003c/a\u003e\u003c/li\u003e\n            \u003cli\u003e\u003ca href=\"image2.png\"\u003e\u003c/a\u003e\u003c/li\u003e\n            \u003cli\u003e\u003ca href=\"image3.png\"\u003e\u003c/a\u003e\u003c/li\u003e\n            \u003cli\u003e\u003ca href=\"image4.png\"\u003e\u003c/a\u003e\u003c/li\u003e\n        \u003c/ul\u003e\n        \u003c/div\u003e\n    \u003c/body\u003e\n\n    \u003c/html\u003e\n\nOptions\n=======\n\n**autoPlay** [bool] default: false\n\n**showTitle** [bool] default: false\n\n**buttonPrev** [selector] default: null\n\n**buttonNext** [selector] default: null\n\n**speedIn** [int] default: 500\n\n**speedOut** [int] default: 500\n\n**interval** [int] default: 3000\n\n**source** [array] default: null.\nIf source = null, load data of element with selector ``md-slider-source``.\nExample array ::\n\n    var arr = [\n        {url: 'image1.jpg', title: 'Title 1', html: '\u003cspan\u003eTitle 1\u003c/span\u003e'},\n        {url: 'image2.jpg', title: 'Title 2', html: '\u003cspan\u003eTitle 2\u003c/span\u003e'}\n    ]\n\nExamples\n========\n\nCustom initial slider ::\n\n    \u003c!DOCTYPE html\u003e\n    \u003chtml\u003e\n\n    \u003chead\u003e\n        \u003ctitle\u003eMy page\u003c/title\u003e\n        \u003clink rel=\"stylesheet\" href=\"slider/jquery.slider.min.css\"\u003e\n        \u003cscript src=\"jquery-1.7.1.min.js\"\u003e\n        \u003cscript src=\"slider/jquery.slider.min.js\"\u003e\n        \u003cscript\u003e\n\n        var arr = [\n            {url: 'image1.jpg', title: 'Title 1', html: '\u003cspan\u003eTitle 1\u003c/span\u003e'},\n            {url: 'image2.jpg', title: 'Title 2', html: '\u003cspan\u003eTitle 2\u003c/span\u003e'}\n        ];\n\n        $(function(){\n            $('#mySlider').slider({\n                autoPlay: true,\n                source: arr\n            });\n        });\n        \u003c/script\u003e\n    \u003c/head\u003e\n\n    \u003cbody\u003e\n        \u003cdiv id=\"mySlider\" style=\"width:860px;height:400px\"\u003e\u003c/div\u003e\n    \u003c/body\u003e\n\n    \u003c/html\u003e\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpkolt%2Fjquery-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpkolt%2Fjquery-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpkolt%2Fjquery-slider/lists"}