简体   繁体   中英

When i add carousel in modal , close button is not working in angular 6

I want to add a carousel in a modal popup, so i have add carousel it is working fine.

But when tried to to close the model using close button , it is not working.

Link to stackblitz demo

情态的gif

Any suggestions on how to make work of close button?

Thanks in advance!

Please try to change css for prev/next arrows:

.carousel-control-next, .carousel-control-prev {
    height: 30px;
    top: 50%;
    transform: translateY(-50%);
}

top and transform will set arrow icon vertically centered. You can change these values easly depending on your needs. And now prev/next controls will have only 30px height. Hope it helps.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM