{"id":16062047,"url":"https://github.com/guillaumebriday/slider-jquery","last_synced_at":"2026-04-24T12:07:06.964Z","repository":{"id":30484227,"uuid":"34038327","full_name":"guillaumebriday/slider-jquery","owner":"guillaumebriday","description":"Plugin Slider","archived":false,"fork":false,"pushed_at":"2017-04-12T09:54:39.000Z","size":4183,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-16T06:03:58.274Z","etag":null,"topics":["javascript","jquery","plugin-slider","slider"],"latest_commit_sha":null,"homepage":"http://guillaumebriday.github.io/slider-jquery/","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/guillaumebriday.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":"2015-04-16T06:29:06.000Z","updated_at":"2018-07-19T20:22:12.000Z","dependencies_parsed_at":"2022-09-07T17:41:26.159Z","dependency_job_id":null,"html_url":"https://github.com/guillaumebriday/slider-jquery","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/guillaumebriday/slider-jquery","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumebriday%2Fslider-jquery","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumebriday%2Fslider-jquery/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumebriday%2Fslider-jquery/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumebriday%2Fslider-jquery/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/guillaumebriday","download_url":"https://codeload.github.com/guillaumebriday/slider-jquery/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/guillaumebriday%2Fslider-jquery/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32222532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"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":["javascript","jquery","plugin-slider","slider"],"created_at":"2024-10-09T04:21:35.855Z","updated_at":"2026-04-24T12:07:06.947Z","avatar_url":"https://github.com/guillaumebriday.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Slider Jquery v1.0\n\nCe plugin vous permettra de faire simplement des sliders entre deux images au survol de la souris.\nVous pouvez également accéder à une démo en ligne sur http://guillaumebriday.github.io/slider-jquery/.\n\n## Table des matières\n\n* Membre(s)\n* Dépendance\n* Comment s'en servir\n* Informations complémentaires\n\n\n## Membre(s)\n\n* \"Guillaume Briday\" \u003cguillaumebriday@gmail.com\u003e\n\n## Dépendance\n\nLe plugin a besoin de Jquery pour fonctionner.\n\n## Comment s'en servir\n\n1. Inclure le css :\n\n    ```html\n        \u003clink rel=\"stylesheet\" href=\"js-slider.min.css\"\u003e\n        // \u003clink rel=\"stylesheet\" href=\"js-slider.css\"\u003e\n    ```\n\n2. Inclure Jquery et le plugins:\n\n    ```html\n        \u003cscript type=\"text/javascript\" src=\"https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js\"\u003e\u003c/script\u003e\n        \u003cscript  type=\"text/javascript\" src=\"js-slider.min.js\"\u003e\u003c/script\u003e\n        // \u003cscript  type=\"text/javascript\" src=\"js-slider.js\"\u003e\u003c/script\u003e\n    ```\n\n3. Coller la structure HTML du plugin où vous le souhaitez :\n\n    Vous devrez adapter le lien des images pour y mettre les votres.\n\n    ```html\n        \u003cdiv class=\"js-slider-container\"\u003e\n            \u003cimg src=\"before.jpg\" class=\"js-slider-first\" /\u003e\n            \u003cdiv class=\"js-slider-last-container\"\u003e\n                \u003cimg src=\"after.jpg\" class=\"js-slider-last\"\u003e\n            \u003c/div\u003e\n        \u003c/div\u003e\n    ```\n\n\n4. Appelez le plugin en Jquery:\n\n    ```javascript\n        (function($){\n            $(\".js-slider-container\").slider();\n        })(jQuery);\n    ```\n\n    Vous pouvez également rajouter des options :\n\n    * rollback : permet de faire revenir automatiquement ou non le slider au milieu lorsque la souris ne survole plus les images.\n    * duration : C'est le durée de l'animation de \"callback\" en ms\n    * width : C'est la taille par défaut de la seconde image\n\n    ```javascript\n        (function($){\n            $(\".js-slider-container\").slider({\n                rollback : true, // true|false\n                duration : 400, // Durée de l'animation en ms\n                width : '50%'\n            });\n        })(jQuery);\n    ```\n\n## Informations complémentaires\n\nN'hésitez pas à me contacter pour avec des informations complémentaires ou me remonter un bug.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumebriday%2Fslider-jquery","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguillaumebriday%2Fslider-jquery","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguillaumebriday%2Fslider-jquery/lists"}