ngx-fullscreen-slider

This library was generated with Angular CLI version 8.2.14.

Usage no npm install needed!

<script type="module">
  import ngxFullscreenSlider from 'https://cdn.skypack.dev/ngx-fullscreen-slider';
</script>

README

NgxFullscreenSlider

This library was generated with Angular CLI version 8.2.14.

Working perfect in Angular 8.x.x Application

How To Use

  1. Add this NgxFullscreenSlider in declarations

  2. Import using this import { NgxFullscreenSlider } from 'ngx-fullscreen-slider';

  3. Add this component in any html like this <ngx-fullscreen-slider setHeight="500px" setWidth="500px" [slides]=slidesArray></ngx-fullscreen-slider>

  4. slides property is required.

  5. As package name describes this slider's nature, however you still can configure height and width of slider by setHeight and setWidth properties. setHeight and setWidth are optional, You can directly assign values like this setHeight="500px" or you can use variable like this [setHeight]=heightVariable

Example

slidesArray = [{ title: "Title", description: "Description", image: "YourImageUrl", }]

Properties for slide array

Property Datatype
title string
description string
image string
backgroundColor string
textColor string
textBackgroundColor string