{"id":18474276,"url":"https://github.com/dimimikadze/vanilla-slideshow","last_synced_at":"2025-12-12T04:22:26.197Z","repository":{"id":58235872,"uuid":"39297197","full_name":"DimiMikadze/vanilla-slideshow","owner":"DimiMikadze","description":"Vanilla Javascript CSS3 Responsive Fullscreen Slideshow","archived":false,"fork":false,"pushed_at":"2017-06-23T14:56:34.000Z","size":8744,"stargazers_count":40,"open_issues_count":3,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-23T12:41:29.469Z","etag":null,"topics":["javascript"],"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/DimiMikadze.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":"license.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-07-18T12:15:01.000Z","updated_at":"2025-03-10T06:50:42.000Z","dependencies_parsed_at":"2022-08-31T09:41:53.195Z","dependency_job_id":null,"html_url":"https://github.com/DimiMikadze/vanilla-slideshow","commit_stats":null,"previous_names":["dimitrimikadze/vanilla-slideshow"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimiMikadze%2Fvanilla-slideshow","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimiMikadze%2Fvanilla-slideshow/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimiMikadze%2Fvanilla-slideshow/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/DimiMikadze%2Fvanilla-slideshow/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/DimiMikadze","download_url":"https://codeload.github.com/DimiMikadze/vanilla-slideshow/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247842745,"owners_count":21005340,"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":["javascript"],"created_at":"2024-11-06T10:28:52.527Z","updated_at":"2025-12-12T04:22:26.162Z","avatar_url":"https://github.com/DimiMikadze.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vanilla Javascript CSS3 Fullscreen Responsive Slideshow\n\nEasy to use Pure javascript and CSS3 Responsive Fullscreen Slideshow\n\n## Features\n\n- Lightweight, No libraries required\n- CSS3 Transitions\n- Responsive\n- Fullscreen \n- Easy to use\n\n## Getting Started\n\nUse the viewport meta tag to control layout on mobile browsers\n\n````\n\u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1\"\u003e\n````\nRequired HTML\n\n````\n\u003cdiv id=\"vanilla-slideshow-container\"\u003e\n\n\t\u003cdiv id=\"vanilla-slideshow\"\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\"\u003e\n\t\t\t\u003cimg src=\"images/tiger1.jpg\" alt=\"tiger\"\u003e\n\n\t\t\tcontent here ...\n\t\t\u003c/div\u003e\n\n\t\t\u003cdiv class=\"vanilla-slide\"\u003e\n\t\t\t\u003cimg src=\"images/tiger2.jpg\" alt=\"tiger\"\u003e\n\n\t\t\tcontent here ...\n\t\t\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\"\u003e\n\t\t\t\u003cimg src=\"images/tiger3.jpg\" alt=\"tiger\"\u003e\n\n\t\t\tcontent here ...\n\t\t\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\"\u003e\n\t\t\t\u003cimg src=\"images/tiger4.jpg\" alt=\"tiger\"\u003e\n\n\t\t\tcontent here ...\n\t\t\u003c/div\u003e\n\n\t\u003c/div\u003e\n\n\t\u003cdiv id=\"vanilla-indicators\"\u003e\u003c/div\u003e\n\n\t\u003cdiv id=\"vanilla-slideshow-previous\"\u003e\n\t\t\u003cimg src=\"images/arrow-previous.png\" alt=\"slideshow arrow\"\u003e\n\t\u003c/div\u003e\n\t\u003cdiv id=\"vanilla-slideshow-next\"\u003e\n\t\t\u003cimg src=\"images/arrow-next.png\" alt=\"slideshow arrow\"\u003e\n\t\u003c/div\u003e\n\u003c/div\u003e\t\n````\nYou can also use data-src and full path of image to display css background images\n\n````\n\t\u003cdiv id=\"vanilla-slideshow\"\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\" data-src=\"images/tiger1.jpg\"\u003econtent here ...\u003c/div\u003e\n\n\t\t\u003cdiv class=\"vanilla-slide\" data-src=\"images/tiger2.jpg\"\u003econtent here ...\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\" data-src=\"images/tiger3.jpg\"\u003econtent here ...\u003c/div\u003e\n\t\t\n\t\t\u003cdiv class=\"vanilla-slide\" data-src=\"images/tiger4.jpg\"\u003econtent here ...\u003c/div\u003e\n\n\t\u003c/div\u003e\n````\n\n1. include css/vanillaSlideshow.css\n2. include js/vanillaSlideshow.min.js Or js/vanillaSlideshow.js\n\nafter including javascript file initilize slideshow\n\n````\n\u003cscript\u003e\n\tvanillaSlideshow.init();\n\u003c/script\u003e\n````\n\n## Options\n\nTo customize functionality pass object to init function\n\n````\n\u003cscript\u003e\n\tvanillaSlideshow.init({\n\t\t\n\t\t// auto slideshow, options: true or false\n\t\tslideshow: true,\n\t\t\n\t\t// slideshow delay\n\t\tdelay: 5000,\n\t\t\n\t\t// display arrows, options: true or false\n\t\tarrows: true,\n\t\t\n\t\t// display indicators, options: true or false\n\t\tindicators: true,\n\t\n\t\t// start slideshow randomly, options: true or false\n\t\trandom: false,\n\t\n\t\t// animation speed\n\t\tanimationSpeed: '1s'\n\n\t});\n\u003c/script\u003e\n````\n\n## Bower\n\n````\nbower install vanilla-slideshow\n````\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch: `git checkout -b my-new-feature`\n3. Commit your changes: `git commit -am 'Add some feature'`\n4. Push to the branch: `git push origin my-new-feature`\n5. Submit a pull request\n\n## License\n\nSee license.txt\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimimikadze%2Fvanilla-slideshow","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimimikadze%2Fvanilla-slideshow","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimimikadze%2Fvanilla-slideshow/lists"}