{"id":22205124,"url":"https://github.com/kdydesign/jqk-slider","last_synced_at":"2026-04-27T21:32:22.165Z","repository":{"id":127476254,"uuid":"52942855","full_name":"kdydesign/jqk-slider","owner":"kdydesign","description":"jQuery simple image slider","archived":false,"fork":false,"pushed_at":"2017-06-28T08:13:13.000Z","size":5409,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-25T03:03:53.435Z","etag":null,"topics":["image","image-slider","jquery","jquery-plugin","slider","slider-plugin","slideshow"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/kdydesign.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2016-03-02T07:25:49.000Z","updated_at":"2017-06-28T00:24:24.000Z","dependencies_parsed_at":null,"dependency_job_id":"cb7d5f39-16ef-49e8-842a-ff168c386059","html_url":"https://github.com/kdydesign/jqk-slider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kdydesign/jqk-slider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdydesign%2Fjqk-slider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdydesign%2Fjqk-slider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdydesign%2Fjqk-slider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdydesign%2Fjqk-slider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kdydesign","download_url":"https://codeload.github.com/kdydesign/jqk-slider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kdydesign%2Fjqk-slider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356598,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["image","image-slider","jquery","jquery-plugin","slider","slider-plugin","slideshow"],"created_at":"2024-12-02T17:26:20.680Z","updated_at":"2026-04-27T21:32:22.149Z","avatar_url":"https://github.com/kdydesign.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![Build Status](https://travis-ci.org/kdydesign/jqk-slider.svg?branch=master)](https://travis-ci.org/kdydesign/jqk-slider)\n\n# jqk-Slider by kdydesign.\nSimple jQuery Slider by kdydesign.(Dev.dy)\n![Alt Text](https://github.com/kdydesign/jqk-slider/blob/master/src/img/git-demo.png)\n\n# Demo\nJSFiddle Demo\n\n\u003ca href=\"https://jsfiddle.net/kdydesign30/w3pb81qy/\" target=\"_blank\"\u003e\u003cp align=\"center\"\u003e\u003cimg src=\"https://raw.githubusercontent.com/kdydesign/jqk-slider/master/src/img/fiddle_icon.png\" style=\"width:whatever;height:whatever;text-align:center\" width=\"200\"\u003e\u003c/p\u003e\u003c/a\u003e\n\n# Basic Usage\nTo add this to your website, simply include the latest jQuery library together with jquery.jqk-slider.js, and jqk-slider.css, and image resources into your document's \u003chead\u003e and create an HTML markup as follows:\n\n```html\n\u003cul id=\"jqk-slider\"\u003e\u003c/ul\u003e\n```\n\nAnd simply call the script like this:\n\n```javascript\nvar slider =\n        $(\"#jqk-slider\").jqkSlider({\n            width: \"100%\",\n            height: 500,\n            dottedNav: {\n                use: true\n            },\n            arrowNav: {\n                use: true\n            },\n            slideSpeed: 5000,\n            effectSpeed: 300,\n            items: [\n                {\n                    title: 'Slider Title-1',\n                    img: 'img/demo-img1.jpg'\n                },\n                {\n                    title: 'Slider Title-2',\n                    img: 'img/demo-img1.jpg'\n                },\n                {\n                    title: 'Slider Title-3',\n                    img: 'img/demo-img1.jpg'\n                }\n            ]\n        });\n```\n\n# Options\n```javascript\n$(\"#jqk-slider\").jqkSlider(\"option\", \"width\", \"100%\");\n```\n\n# Public Methods\n`jqkSlider` methods could be called with jqkSlider `jqkSlider` plugin or directly.\nTo use `jqkSlider` plugin to call a method, just call `jqkSlider` with method name and required parameters as next arguments:\n\n```javascript\n// calling method with jQuery plugin\n$(\"#jqk-slider\").jqkSlider(\"methodName\");\n```\n\nTo call method directly you need to retrieve slider instance or just create slider with the constructor:\n\n```javascript\n// retrieve slider instance from element data\nvar slider = $(\"#jqk-slider\").data(\"jqkSlider\");\n```\n\n```javascript\n// create slider with the constructor\nvar slider = new jqkSlider.Slider($(\"#jqk-slider\"), { ... });\n```\n\n```javascript\n// call method directly\nslider.methodName(param1, param2); \n```\n\nYou can also trigger the slider to move programmatically as well:\n\n## slideStop\nThis method allows you to stop the slider.\n\n```javascript\n$(\"#jqk-slider\").slideStop();\n```\n\n## slideStart\nThis method allows you to start the slider.\n\n```javascript\n$(\"#jqk-slider\").slideStart();\n```\n\n## destroy()\nDestroys the slider\n\n```javascript\n$(\"#jqk-slider\").jqkSlider('destroy')\n```\n\n## addSlide([items])\nadd slide items\n\n```javascript\n$(\"#jqk-slider\").jqkSlider('addSlide', {img:'test.png'})\n```\n\n## removeSlide([index])\nremote slide items\n\n```javascript\n$(\"#jqk-slider\").jqkSlider('removeSlide', 1)\n```\n\n## setSlideSpeed(speed[ms])\nset slide speed\n\n```javascript\n$(\"#jqk-slider\").jqkSlider('setSlideSpeed', 2000)\n```\n\n## setEffectSpeed(speed[ms])\nset slide effect speed\n\n```javascript\n$(\"#jqk-slider\").jqkSlider('setEffectSpeed', 2000)\n```\n# Version\n\u003e Feb 29 2016 (1.0.0)\n\n\u003e Jun 23 2017 (1.1.0.1)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdydesign%2Fjqk-slider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkdydesign%2Fjqk-slider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkdydesign%2Fjqk-slider/lists"}