{"id":19461633,"url":"https://github.com/fionnachan/fslider","last_synced_at":"2025-08-26T12:07:51.317Z","repository":{"id":128393443,"uuid":"48225327","full_name":"fionnachan/fSlider","owner":"fionnachan","description":"A light jQuery slider plugin","archived":false,"fork":false,"pushed_at":"2017-08-18T23:59:51.000Z","size":94,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-08-23T22:54:23.663Z","etag":null,"topics":["plugin","slider","slider-plugin"],"latest_commit_sha":null,"homepage":"http://fionnachan.github.io/","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/fionnachan.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2015-12-18T09:06:32.000Z","updated_at":"2020-12-21T10:48:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"7dbbf048-9a9f-46d1-8376-4e2d90ea2767","html_url":"https://github.com/fionnachan/fSlider","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/fionnachan/fSlider","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fionnachan%2FfSlider","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fionnachan%2FfSlider/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fionnachan%2FfSlider/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fionnachan%2FfSlider/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fionnachan","download_url":"https://codeload.github.com/fionnachan/fSlider/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fionnachan%2FfSlider/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272219195,"owners_count":24894372,"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-08-26T02:00:07.904Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","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":["plugin","slider","slider-plugin"],"created_at":"2024-11-10T17:43:00.604Z","updated_at":"2025-08-26T12:07:51.296Z","avatar_url":"https://github.com/fionnachan.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# fSlider\n\n[Slider Examples] (http://fionnachan.github.io)\n\n[Slider Demo on CodePen] (http://codepen.io/fionnachan/pen/eZKMZg)\n\n#### For the DOM:\n\nWrap your .sliderItem elements in a div with a class name to be used in the script, e.g. *multi4Slider*\n\n#### For the script:\n\n##### if responsive is set true, responsive.js is recommended to be included, otherwise please include $('window').trigger('responsive') somehow.\n\n\u003cpre\u003esliderName = $('.multi4Slider').fSlider({\n\tarrowPrevClass: 'fArrow-prev', // provided for easy styling of arrows\n\tarrowNextClass: 'fArrow-next', // provided for easy styling of arrows\n\tautoplay: false,\t\n\tautoplaySpeed: 3000, // in ms\n\tadaptiveHeightOnResize: false,\n\tloop: false,\n\tcallbacks: {\n\t\tbeforeGoToSlide: function(){},\n\t\tnoLoopAfterEndSlideClickArrow: function(){},\n\t\tafterchangeSlide: function(){}\n\t}, // can pass functions\n\tcustomizeDots: false, // can use thumbnails\t\n\tcenterMode: false, // slidesToShow should always be 1 if centerMode is set true\n\tcenterPadding: '0.2%', // center mode padding applied to current slide, pass in any style among '20%', '40' \u0026 '40px'\n\tshowSiblingsHowMuch: 0.5, // 0.5 = show 50% width of the sibling slide, if value \u003e 1, \u003e 1 slides will be on each side of the center slide\n\tdots: true,\n\tdrag: true,\n\tdynamicHeight: false, // if this is set false, default slider item vertical-align: middle\n\tsetHeight: false, // setHeight to crop sliderItems which are too long\n\twidthHeightRatio: 0, // if setHeight is set true, you must provide this value\n\tdefaultCurrentSlide: 0, // start from 0\n\teasing: 'easeOutExpo', // pass any jQuery easing\n\tnumOfNextSlides: [1, 1], // for responsive, please pass an array, for non-responsive, pass either integer or array \n\tpauseOnHover: true,\n\tresponsiveBreakPoint: [0, 960], // must include 0\n\tresponsive: true,\n\tshowArrows: true,\n\tslidesToShow: [1, 1], // for responsive, please pass an array, for non-responsive, pass either integer or array \n\tspeed: 500 // in ms\n});\n\nsliderName.fSlider('destroy'); or $('.multi4Slider').fSlider('destroy');\n\n// return sliding movement direction: 'prev' or 'next'\nsliderName.fSlider('returnSlideDir'); or $('.multi4Slider').fSlider('returnSlideDir');\n\n$('.multi4Slider').fSlider('goToSlide', targetSlideIndex); // targetSlideIndex [integer]\u003c/pre\u003e\n\n#### support IE8+\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffionnachan%2Ffslider","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffionnachan%2Ffslider","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffionnachan%2Ffslider/lists"}