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. +