npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

reactjs-flip-card

v2.0.3

Published

Highly customizable react flip card

Downloads

2,348

Readme

ReactJsFlipCard

works with: React >= 16.8

important! Changed some props from version 2.x.x. Starting from version 2, there will be no CSS conflicts thanks to :where and module.css. More about Specificity, the :where exception and css modules

Getting Started

You can install the module via npm or yarn:

npm install reactjs-flip-card
yarn add reactjs-flip-card

Demo

Live Demo

Project Structure

The project includes a demo folder initialized with Create React App.

When you run the command build from reactjs-flip-card package.json, a dist and a lib folder will be generated.

The lib folder will be placed automatically into the demo project.

You can move into demo directory and start project from its own package.json script, just like any other Create React App.

Usage

You can pass style or CSS classes through props. ~~Note that the style is the one that will have the highest priority.~~ (Not true for version 2.x.x. You can pass your custom classNames and they will get higher priority).

Please do not pass background or backgroundColor property into flipCardStyle as it may cause unexpected behaviours on different browsers. Use the props frontStyle and backStyle and pass the same style. You could have also used frontCss and backCss passing your custom classes

import ReactFlipCard from 'reactjs-flip-card'

function App() {
    
    const styles = {
        card: {background: 'blue', color: 'white', borderRadius: 20,},
    }
    
    return (
        <ReactFlipCard
            frontStyle={styles.card}
            backStyle={styles.card}
            frontComponent={<div>Hover me!</div>}
            backComponent={<div>Back!</div>}
        />
    );
}

More examples on demo/src/App.js

Props V2.x.x

|Name|Type|Default|Description| |:--|:--:|:-----:|:----------| |containerStyle|CSSProperties|{}|The style of the div container| |containerCss|string|''|The additional className of the div container| |flipCardStyle|CSSProperties|{}|The style of the card itself. Important: please do not pass background or background color property here as it may cause unexpected behaviours on different browsers. Use the props frontStyle and backStyle and pass the same style there| |flipCardCss|string|''|The additional className of the card itself. Important: please do not pass background or background-color property here as it may cause unexpected behaviours on different browsers. Use the props frontCss and backCss and pass the same css there | |frontStyle|CSSProperties|{}|The style of the front card| |frontCss|string|''|The additional className of the front card| |backStyle|CSSProperties|{}|The style of the back card| |backCss|string|''|The additional className of the back card| |direction|'vertical'|'horizontal'|'diagonal'|horizontal|The direction of the flip card| |flipTrigger|'onClick'|'onHover'|'disabled'||'onHover'|The event that trigger the flip| |flipByProp|boolean|undefined|undefined|Eventually handle flip from boolean prop. Eventually you can set flipTrigger to 'disabled' if this prop is enabled| |frontComponent|ReactNode|required|Any JSX Component| |backComponent|ReactNode|required|Any JSX Component| |onClick|MouseEventHandler|_=>un...ed|Any callback assigned to the onClick event. This event relates to the card container| |onMouseEnter|MouseEventHandler|_=>un...ed|Any callback assigned to the onMouseEnter event. This event relates to the card container| |onMouseLeave|MouseEventHandler|_=>un...ed|Any callback assigned to the onMouseLeave event. This event relates to the card container|

Props V1.x.x

width | height | cursor: removed in version 2. Optionally Pass them into containerStyle orcontainerCss for version 2. Same default values

flipCardContainerStyle : renamed as containerStyle in version 2

flipCardContainerCss : renamed as containerCss in version 2

transitionDuration : removed in version 2. Optionally Pass it into flipCardStyle or flipCardCss. Same default value

|Name|Type|Default|Description| |:--|:--:|:-----:|:----------| |width|CSSProperties|'100px'| The width of the div container| |height|CSSProperties|'100px'|The height of the div container| |cursor|CSSProperties|'default'|The cursor type that appear when mouse hover the div container| |transitionDuration|CSSProperties|'0.5s'|The transition duration of the div container| |flipCardContainerStyle|CSSProperties|{}|The style of the div container| |flipCardContainerCss|string|''|The additional className of the div container| |flipCardStyle|CSSProperties|{}|The style of the card itself. Important: please do not pass background or background color property here as it may cause unexpected behaviours on different browsers. Use the props frontStyle and backStyle and pass the same style there| |flipCardCss|string|''|The additional className of the card itself. Important: please do not pass background or background-color property here as it may cause unexpected behaviours on different browsers. Use the props frontCss and backCss and pass the same css there | |frontStyle|CSSProperties|{}|The style of the front card| |frontCss|string|''|The additional className of the front card| |backStyle|CSSProperties|{}|The style of the back card| |backCss|string|''|The additional className of the back card| |direction|'vertical'|'horizontal'|'diagonal'|horizontal|The direction of the flip card| |flipTrigger|'onClick'|'onHover'|'disabled'||'onHover'|The event that trigger the flip| |flipByProp|boolean|undefined|undefined|Eventually handle flip from boolean prop. Eventually you can set flipTrigger to 'disabled' if this prop is enabled| |frontComponent|ReactNode|required|Any JSX Component| |backComponent|ReactNode|required|Any JSX Component| |onClick|MouseEventHandler|_=>un...ed|Any callback assigned to the onClick event. This event relates to the card container| |onMouseEnter|MouseEventHandler|_=>un...ed|Any callback assigned to the onMouseEnter event. This event relates to the card container| |onMouseLeave|MouseEventHandler|_=>un...ed|Any callback assigned to the onMouseLeave event. This event relates to the card container|

Contributing and Support

Contributions of any kind are welcome.

If this package was helpful to you, please consider putting a star on the GitHub project.

License

MIT