.swiper-wrapper {
width: 100%;
height: 300px;
}
.swiper-slide {
display: flex;
justify-content: center;
align-items: center;
color: #fff;
font-size: 20px;
font-weight: 700;
}
.swiper-slide:nth-child(1) {
background-color: #fb4949;
}
.swiper-slide:nth-child(2) {
background-color: #34dc1a;
}
.swiper-slide:nth-child(3) {
background-color: #4FC3F7;
}
.swiper-slide:nth-child(4) {
background-color: #FFC107;
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 8px;
width: 10px;
height: 10px;
background-color: rgba(0, 0, 0, .8);
}
.swiper .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet-active {
background-color: #fff;
}
const Swiper_05 = new Swiper('#swiper-05', {
pagination: {
el: '.swiper-pagination',
type: 'bullets',
clickable: true
}
});