sm-cardslide
v1.0.2
Published
This is a card component package with internal horizontal scroll.
Downloads
3
Readme
sm-cardslide
This package provides a card component with internal horizontal scroll for React applications, allowing easy integration of card slideshows with customizable content and animations.
Installation
You can install sm-cardslide
via npm or yarn:
npm install sm-cardslide
# or
yarn add sm-cardslide
Usage
import React from "react";
import Cardslide from "sm-cardslide";
import jsonData from "./path_to_your_json_data.json";
const MyComponent = () => {
return (
<Cardslide jsondata={jsonData} />
);
}
export default MyComponent;
Props
jsondata
: JSON object containing the configuration for the card slide component.
Example JSON Data
{
"id": "exampleId",
"backgroundColor": "bg-dark",
"card": [
{
"img": "http_link_to_your_image_1.jpg",
"title": "Card Title 1",
"text": "Card description goes here...",
"button": "Button 1",
"buttonLink": "#"
},
{
"img": "http_link_to_your_image_2.jpg",
"title": "Card Title 2",
"text": "Card description goes here...",
"button": "Button 2",
"buttonLink": "#"
},
...
],
"wow_animation": "fadeIn", // Example animation class
"wow_duration": "1s", // Example animation duration
"wow_delay": "0.5s" // Example animation delay
}
License
This project is licensed under the ISC License. See the LICENSE file below :
ISC License
Copyright (c) 2024, Shivam Makwana
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.