1.0.2 • Published 1 year ago

odin-simple-image-slider v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

odin-simple-image-slider

Simple image slider - slides through images

My third npm package with the-odin-project

usage

install: npm i odin-simple-image-slider

import in your project:

import imageSlider from "odin-simple-image-slider"

the default style is at ./node_modules/odin-simple-image-slider/style.css and is imported at index.js in the same location

syntax

imageSlider(...images)

example

import imageSlider from "./simple-image-slider/index.js";
import Grass from './grass.jpg';
import Snow from './snow.jpg';
import Pc from './pc.jpg';
import Desert from './desert.jpg';


const app = document.querySelector('#app');

app.append(imageSlider(Grass, Snow, Pc, Desert));

it returns a dom node that you can append using append/appendChild

license

ISC

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago