Bootstrap carousel component, large screen image centering effect

Source: Internet
Author: User
Tags bootstrap carousel

When learning about the bootstrap Carousel module, I learned that the carousel images were placed in IMG under the class name item.

In the video teacher to the picture adaptive adoption to the picture img set width=100% complete, but such adaptive processing picture in different screen effect is different, big screen effect is very bad. Like what

Such a picture,

For the image adaptive setting width=100%, The effect is shown in the wide 1920px.

Obviously, because the picture is set to a width of 100%, most of its content is truncated and the display is very bad.

I thought about it later. Is there any way to make the picture really adaptive and center it, then think of css3 background picture attribute background-size. A small modification of the wheel bootstrap broadcast component is started.

Discard the IMG tag under item class, replace with Div, and set width:100%;height:100% for it;        Background-size:contain;    

The above code effect is like this

The contents are all displayed, but the picture is not centered on the big screen. This is simple, then set the background-position:cenetr for Div .

            width:100%;  Div self-adapting parent width            height:100%;  div adaptive height            background-size:contain;  Cannot use cover,            background-repeat:no-repeat;              Background-position:center;  Center picture

The final effect: The image can be adapted to display the entire content at any resolution.

Bootstrap carousel component, large screen image centering effect

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.