/* Copyright © 2016-2019 Lidor Systems. All rights reserved. This file is part of the "IntegralUI Web" Library. The contents of this file are subject to the IntegralUI Web License, and may not be used except in compliance with the License. A copy of the License should have been installed in the product's root installation directory or it can be found at http://www.lidorsystems.com/products/web/studio/license-agreement.aspx. This SOFTWARE is provided "AS IS", WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for the specific language governing rights and limitations under the License. Any infringement will be prosecuted under applicable laws. */ import { Component, ViewContainerRef, ViewChild } from '@angular/core'; @Component({ selector: '', template: `

SlideBar / Overview

{{slide.text}}

IntegralUI SlideBar is a native Angular component that allows you to animate slides created using images or custom content.

The demonstration above shows only the basic features available in SlideBar component. There are few slides each showing a title. Slide changes are automatic and animated from right to left. Whenever a slide is selected, an animation runs showing the slide content in current view of the SlideBar component. Using navigation buttons, you can quickly switch to specific slide.

For more information check out the source code of this sample (slidebar/slidebar-overview.ts) file, or read the following article:

Overview of IntegralUI SlideBar for Angular

` }) export class SlideBarOverviewSample { public slides: Array; constructor(){ this.slides = [ { text: "Slide 1" }, { text: "Slide 2" }, { text: "Slide 3" } ]; } }