-
-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Option to change navigation control design/images in Carousel #211
Comments
@toPrabhat <c-carousel ...>
<c-carousel-inner>
...
</c-carousel-inner>
<c-carousel-control [tabIndex]="0" direction="prev">
<svg cIcon name="cil-chevron-left" size="3xl"></svg>
<span class="visually-hidden">Previous</span>
</c-carousel-control>
<c-carousel-control [tabIndex]="0" direction="next">
<svg cIcon name="cil-chevron-right" size="3xl"></svg>
<span class="visually-hidden">Next</span>
</c-carousel-control>
</c-carousel> |
Can this be done with the indicators? |
@dbarrerap |
Instead of lines, use thumbnails of the actual images |
As issue #214 also done to support pause, could I ask potentially for an optional "pause" button to be able to be enabled on the c-carousel-indicators. Its a bit of a fight to get our own custom control to look nice with the current indicators without putting it below them... Thx |
@dbarrerap starting from v5.3.16 you can pass your custom template into <c-carousel [interval]="5000">
<c-carousel-indicators #indicators="cCarouselIndicators">
<ng-template cTemplateId="carouselIndicatorsTemplate">
@for (slide of slides[0]; track slide; let i = $index) {
<button
[attr.data-coreui-target]="i"
type="button"
(click)="indicators.onClick(i)"
[class]="{ active: indicators.active === i }"
[attr.aria-current]="indicators.active === i"
[cBorder]="true"
style="height: auto;"
cRounded="pill"
>
<img
[src]="slide.src"
alt="{{slide.title}}"
class="d-flex w-100"
loading="lazy"
cRounded="pill"
/>
</button>
}
</ng-template>
</c-carousel-indicators>
<c-carousel-inner>
...
</c-carousel-inner>
</c-carousel> |
Awesome! Thank you very much! |
Before opening:
Feature requests must include:
The text was updated successfully, but these errors were encountered: