{"id":13400048,"url":"https://github.com/drygiel/csslider","last_synced_at":"2025-03-14T04:32:32.412Z","repository":{"id":11208099,"uuid":"13593687","full_name":"drygiel/csslider","owner":"drygiel","description":"Pure CSS slider","archived":false,"fork":false,"pushed_at":"2018-05-08T19:14:18.000Z","size":220,"stargazers_count":232,"open_issues_count":6,"forks_count":116,"subscribers_count":20,"default_branch":"master","last_synced_at":"2024-02-13T01:48:35.756Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://codepen.io/drygiel/pen/rtpnE","language":"CSS","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/drygiel.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":"2013-10-15T15:19:09.000Z","updated_at":"2023-12-21T22:18:19.000Z","dependencies_parsed_at":"2022-09-15T18:22:15.956Z","dependency_job_id":null,"html_url":"https://github.com/drygiel/csslider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drygiel%2Fcsslider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drygiel%2Fcsslider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drygiel%2Fcsslider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/drygiel%2Fcsslider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/drygiel","download_url":"https://codeload.github.com/drygiel/csslider/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243526886,"owners_count":20305110,"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","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-07-30T19:00:47.288Z","updated_at":"2025-03-14T04:32:27.401Z","avatar_url":"https://github.com/drygiel.png","language":"CSS","funding_links":[],"categories":["CSS","Uncategorized"],"sub_categories":["Uncategorized"],"readme":"CSS Slider\n==========\n\nPure CSS, simple slider.\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"http://rawgithub.com/drygiel/csslider/master/examples/light.html\" target=\"_blank\"\u003e\n        \u003cimg src=\"http://i.imgur.com/oRjssZe.jpg\" alt=\"ight design\" /\u003e\n    \u003ca/\u003e\n\u003c/p\u003e\n\n## Examples\n\nHere are some examples:\n\n- [Dark](http://rawgithub.com/drygiel/csslider/master/examples/dark.html)\n- [Bright](http://rawgithub.com/drygiel/csslider/master/examples/light.html)\n- [Basic](http://rawgithub.com/drygiel/csslider/master/examples/basic.html)\n- [Playground](http://codepen.io/drygiel/pen/rtpnE)\n\n\n## Supported browsers\n\n- Chrome `(tested only on 30)`\n- Firefox `(tested only on 24)`\n- IE\n\t- `9`   No transitions\n\t- `10+` Works perfect\n- Opera `(tested only on 12)`\n\n\n## Installation\n\n- Include the CSS stylesheet at the end of `\u003chead\u003e` element:\n\n\t```html\n\t\u003clink rel=\"stylesheet\" href=\"/path/to/csslider.css\" /\u003e\n\t```            \n- Put code into webpage:\n\t\n\t```html\n\t\u003cdiv class=\"csslider\"\u003e\n\t    \u003cinput type=\"radio\" name=\"slides\" id=\"slides_1\" checked /\u003e\n\t    \u003cinput type=\"radio\" name=\"slides\" id=\"slides_2\" /\u003e\n\t    \u003cinput type=\"radio\" name=\"slides\" id=\"slides_3\" /\u003e\n\t    \u003cinput type=\"radio\" name=\"slides\" id=\"slides_4\" /\u003e\n\t    \u003cinput type=\"radio\" name=\"slides\" id=\"slides_N\" /\u003e\n\t    \u003cul\u003e\n\t        \u003cli\u003eContent of slide 1\u003c/li\u003e\n\t        \u003cli\u003eContent of slide 2\u003c/li\u003e\n\t        \u003cli\u003eContent of slide 3\u003c/li\u003e\n\t        \u003cli\u003eContent of slide 4\u003c/li\u003e\n\t        \u003cli\u003eContent of slide N\u003c/li\u003e\n\t    \u003c/ul\u003e\n\t    \u003cdiv class=\"arrows\"\u003e\n\t        \u003clabel for=\"slides_1\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_2\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_3\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_4\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_N\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_1\" class=\"goto-first\"\u003e\u003c/label\u003e\n\t        \u003clabel for=\"slides_N\" class=\"goto-last\"\u003e\u003c/label\u003e\n\t    \u003c/div\u003e\n\t    \u003cdiv class=\"navigation\"\u003e\n\t\t    \u003cdiv\u003e\n\t        \t\u003clabel for=\"slides_1\"\u003e\u003c/label\u003e\n\t        \t\u003clabel for=\"slides_2\"\u003e\u003c/label\u003e\n\t        \t\u003clabel for=\"slides_3\"\u003e\u003c/label\u003e\n\t        \t\u003clabel for=\"slides_4\"\u003e\u003c/label\u003e\n\t        \t\u003clabel for=\"slides_N\"\u003e\u003c/label\u003e\n\t\t    \u003c/div\u003e\n\t    \u003c/div\u003e\n\t\u003c/div\u003e\n\t```\n\tCode you can generate from [JADE](https://github.com/drygiel/csslider/blob/master/build/template.jade) template file [here](http://codepen.io/drygiel/pen/rtpnE)\n\n## Global configuration\nDefault configuration can be set in [LESS](https://github.com/drygiel/csslider/blob/master/build/csslider.less) file.\n\n## Local configuration\nIf you want to change configuration for specific element you must override default config. \nFor instance if you have an element with id `#my-slider` and you want to change:\n- arrows color\n\n```css\n#my-slider .arrows label {\n   border-left-color: red;\n   border-right-color: red;\n}\n```\n- inside navigation border\n\n```css\n#my-slider.inside .navigation label {\n    border: 1px solid red;\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrygiel%2Fcsslider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdrygiel%2Fcsslider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdrygiel%2Fcsslider/lists"}