Skip to content
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

Open
toPrabhat opened this issue Nov 25, 2024 · 7 comments
Open

Option to change navigation control design/images in Carousel #211

toPrabhat opened this issue Nov 25, 2024 · 7 comments
Labels
enhancement New feature or request

Comments

@toPrabhat
Copy link

Before opening:

Feature requests must include:

  • As much detail as possible for what we should add and why it's important to Bootstrap
  • Relevant links to prior art, screenshots, or live demos whenever possible
@toPrabhat toPrabhat changed the title Option to change navigation control design/images Option to change navigation control design/images in Carousel Nov 25, 2024
@xidedix
Copy link
Member

xidedix commented Nov 26, 2024

@toPrabhat
You can change navigation control images using the custom content for c-carousel-controls sub-component.
This information appears to be missing from the docs. Thank you for bringing it to our attention.

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

@dbarrerap
Copy link

Can this be done with the indicators?

@xidedix
Copy link
Member

xidedix commented Dec 22, 2024

@dbarrerap
At the moment, the only option is to modify the .carousel-indicators CSS class.
How would you like to modify the indicators’ visual appearance?

@dbarrerap
Copy link

Instead of lines, use thumbnails of the actual images

@xidedix xidedix added the enhancement New feature or request label Dec 22, 2024
@baloo32
Copy link

baloo32 commented Feb 11, 2025

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

@xidedix
Copy link
Member

xidedix commented Feb 19, 2025

@dbarrerap starting from v5.3.16 you can pass your custom template into c-carousel-indicators. Styling is up to you.

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

@dbarrerap
Copy link

dbarrerap commented Feb 19, 2025

@dbarrerap starting from v5.3.16 you can pass your custom template into c-carousel-indicators. Styling is up to you.

Awesome! Thank you very much!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

4 participants