Front-End & Daily

[bxSlider] How to align slides to the vertical center

[bxSlider] How to align slides to the vertical center

Here's how to vertically center slides in the jQuery slider plugin "bxSlider".

Sample

The images are left-aligned, but this is what it looks like when implemented with the bare minimum.

The images should bevertically centered.

Method

Assuming you have HTML like this:

<div class="bxslider">
	<div class="slide"><img src="img/img01.jpg"></div>
	<div class="slide"><img src="img/img02.jpg"></div>
	<div class="slide"><img src="img/img03.jpg"></div>
	<div class="slide"><img src="img/img04.jpg"></div>
</div>

Just add the following to your CSS.

.bxslider {
	display: flex;
	align-items: center;
}

This uses Flexbox to vertically center the child elements of .bxslider.

Here are two more samples.

Also horizontally centered

To create a slider like this:

Add the following to your CSS.

.bxslider {
	display: flex;
	align-items: center;
}

.bxslider02 .slide img {
	margin: 0 auto;
}

Line 7 horizontally centers the img.

Show adjacent slides

To create a slider like this:

Add the following to your CSS.

.bx-wrapper {
	overflow: hidden;
	border: none;
	box-shadow: none;
}
.bx-viewport {
	overflow: visible !important;
	width: 300px!important; // Specify slide width
	margin: 0 auto;
}
.bxslider {
	display: flex;
	align-items: center;
}
.slide img {
	margin: 0 auto;
}

Comments

We also welcome reports such as "It worked!"

After reviewing the content, we will publish it, omitting any personal information.

Enter your name and email address

Please enter if you would like a reply via email.

Personal information provided will not be disclosed. It will only be used for replies.

It will be sent directly. Please confirm and "Send".

If this was helpful, we appreciate your support!
Any support received will be used for childcare.

Send support via OFUSE


Or support us by buying something from the buttons below
(You don't have to buy the linked product.)

Amazon

楽天市場

Yahoo!ショッピング

PR

As an Amazon Associate, "Ken" earns from qualifying purchases.

Share

Share on Twitter Share on Facebook Share on LINE Share on Hatena Bookmark