Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
famous-carousel
Advanced tools
##Famo.us Carousel
A responsive carousel / slideshow / slider powered by Famo.us. Supports mouse, touch/swipe and keyboard navigation.
After cloning the repo:
npm install
Start the example project at port 8080:
npm run example
famous-carousel uses Browserify require. Refer to the example folder for boilerplate setup. When using this as an npm module, reference it as such:
var Carousel = require('famous-carousel');
var myCarousel = new Carousel('myDivSelector', {
// add options here
// ...
}
);
The following keys are supported in the options object. Only carouselData is required, all others are optional.
Type: String
or Object
Default: body
As a string, selector is a CSS selector of the element to render into.
As an object, selector is assumed to be a Famous node.
Type: Object
This specifies the content of the slides. It is an array of objects, each containing type and data keys.
type may be 'image' or 'markup'.
data must be a url for image, or any valid html for markup.
Type: Integer
Default: 0
Initial slide number to show (zero-based). If larger than the number of slides, it will cap to the final slide.
Type: Boolean
Default: false
By default, navigation stops at the ends of the slide set. Setting wrapAround to true allows navigation to wrap from one end to the other.
Type: Integer
Default: 0
Automatically transition slides, pausing on each slide for the number of milliseconds specified. When the user navigates manually, automatic playback stops.
Type: Integer
Default: 1
Number of slides to advance during automatic playback.
Type: Integer
Default: 1
Number of slides to advance when user navigates.
Type: Integer
Default: 10
Width of dots along bottom.
Type: Integer
Default: 5
Spacing of dots along bottom.
Type: String
Default: 'white'
Navigation dot foreground color (CSS style).
Type: String
Default: 'transparent'
Navigation dot background color (CSS style).
Type: Float
Default: 1.0
Navigation dot opacity (CSS style).
Type: String
CSS class to style the selected dot. This overrides the other dot* CSS options (dotWidth & dotSpacing continue to be honored).
Type: String
CSS class to style unselected dots. This overrides the other dot* CSS options (dotWidth & dotSpacing continue to be honored).
Type: String
Default: 'white'
Navigation arrow fill color (CSS style).
Type: String
Default: 'transparent'
Navigation arrow outline color (CSS style).
Type: String
CSS class to style dots. This overrides the other arrow* CSS options.
Updates the slide data. This calls clearSlides() to reinitialize the slides. There is an issue with the dots not re-rendering properly.
Removes the slides.
Removes the carousel instance entirely. NOTE: Famo.us 0.5.2 has a bug causing it not to remove the DOMElement. famous-carousel removes the div.famous-dom-renderer element for now.
To build a self-contained bundle:
npm run build
That builds the CommonJS version (famous-carousel.js), global version (famous-carousel.global.js), and global debug versions (famous-carousel.global.debug.js). The global build uses the variable name famousCarousel. To see the global version in action, copy dist/famous-carousel.global.js to example/, start a server in example and open global.html .
Run tests (linter & style checks for now):
npm run test
Q: The arrows & dots show, but the slides are invisible.
A: famous-carousel sizes to its container's dimensions. Due to CSS box model rules, if no height is specified for the container, the default auto height computes to 0. Short answer: set a height for its parents all the way up to the root element.
Q: The slides appear from outside the containing element when animating.
A: Set the container's overflow property to hidden. Additionally center the famous-carousel within the containing element using these properties:
.myContainerClass {
overflow:hidden;
position:absolute;
left:0; right:0;
top:0; bottom:0;
margin:auto;
}
Q: The arrows/dots aren't visible [against a white backgound].
A: dotBackColor and arrowOutlineColor default to transparent. Set them to a different color.
Pull requests are welcome. When submitting a PR, please make sure npm run test passes.
This project is based on the Famo.us Carousel tutorial and bound by the same MIT license. Refer to the LICENSE file.
FAQs
Carousel built on Famo.us
The npm package famous-carousel receives a total of 2 weekly downloads. As such, famous-carousel popularity was classified as not popular.
We found that famous-carousel demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.