From 9bd70d8041590d1b5cf6ffc8e00b63e861cf1c42 Mon Sep 17 00:00:00 2001 From: Galip Tolga Erdem Date: Thu, 11 Jun 2020 02:41:50 +0300 Subject: [PATCH] Create Carousel.md --- docs/en/UI/AspNetCore/Tag-Helpers/Carousel.md | 74 +++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 docs/en/UI/AspNetCore/Tag-Helpers/Carousel.md diff --git a/docs/en/UI/AspNetCore/Tag-Helpers/Carousel.md b/docs/en/UI/AspNetCore/Tag-Helpers/Carousel.md new file mode 100644 index 0000000000..6088977068 --- /dev/null +++ b/docs/en/UI/AspNetCore/Tag-Helpers/Carousel.md @@ -0,0 +1,74 @@ +# Carousel + +## Introduction + +`abp-carousel` is a the abp tag for carousel element. + +Basic usage: + +````csharp + + + + + +```` + + + +## Demo + +See the [carousel_demo page](https://bootstrap-taghelpers.abp.io/Components/Carousel) to see it in action. + +## Attributes + +### id + +A value sets the id of the carousel. If not set, generated id will be set whenever the tag is created. + +### controls + +A value to enable the controls (previous and next buttons) on carousel. Should be one of the following values: + +* `false` +* `true` + +### indicators + +A value to enables the indicators on carousel. Should be one of the following values: + +* `false` +* `true` + +### crossfade + +A value to enables the fade animation instead of slide on carousel. Should be one of the following values: + +* `false` +* `true` + +## abp-carousel-item Attributes + +### caption-title + +A value sets the caption title of the carousel item. + +### caption + +A value sets the caption of the carousel item. + +### src + +A link value sets the source of the image displayed on carousel item. + +### active + +A value to set the active carousel item. Should be one of the following values: + +* `false` +* `true` + +### alt + +A value sets the alternate text for the carousel item image when the image can not be displayed. +