Bootstrap realizes the effect of carousel

Bootstrap realizes the effect of carousel

This article shares the specific code of Bootstrap to achieve the effect of carousel map for your reference. The specific content is as follows

Achieve results

step

1. Download bootstrap and jquery-3.6.0.min.js, and reference them in HTML. Note that jq.js should be referenced before all js.

2. Modify and import the image according to the Carousel example on the official website https://v3.bootcss.com/javascript/. The body source code is as follows

<div class="box">
        <div id="carousel-example-generic" class="carousel slide" data-ride="carousel">
            <!-- Indicators -->
            <ol class="carousel-indicators">
                <li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
                <li data-target="#carousel-example-generic" data-slide-to="1"></li>
                <li data-target="#carousel-example-generic" data-slide-to="2"></li>
                <li data-target="#carousel-example-generic" data-slide-to="3"></li>
            </ol>

            <!-- Wrapper for slides -->
            <div class="carousel-inner" role="listbox">
                <div class="item active">
                    <img src="./images/xuezhong_1.jpg" alt="...">
                    <div class="carousel-caption">
                        Picture 1
                    </div>
                </div>
                <div class="item">
                    <img src="./images/guimizhizhu_2.jpg" alt="...">
                    <div class="carousel-caption">
                        Picture 2
                    </div>
                </div>
                <div class="item">
                    <img src="./images/jianlai_3.jpg" alt="...">
                    <div class="carousel-caption">
                        Picture 3
                    </div>
                </div>
                <div class="item">
                    <img src="./images/yichang_4.jpg" alt="...">
                    <div class="carousel-caption">
                        Picture 4
                    </div>
                </div>

            </div>

            <!-- Controls -->
            <a class="left carousel-control" href="#carousel-example-generic" role="button" data-slide="prev">
                <span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
                <span class="sr-only">Previous</span>
            </a>
            <a class="right carousel-control" href="#carousel-example-generic" role="button" data-slide="next">
                <span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
                <span class="sr-only">Next</span>
            </a>
        </div>
</div>

Adjust the image style in style.css

.box {
    width: 600px;
    height: 300px;
    background-color: pink;
    margin: 100px auto;
}

.carousel,
.carousel img {
    width: 100%;
    height: 300px !important;
}

Add carousel time in js

<script>
        $('.carousel').carousel({
            interval: 2000
        })
</script>

You can modify the required styles according to the guidance of the official website

The steps are completed and the bootstrap carousel is implemented.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Bootstrap grid system layout detailed explanation
  • Analysis of how to use the bootstrap grid system
  • BootStrap navigation bar problem record
  • Embracing Bootstrap — Navigation Bar
  • Detailed explanation of how to use the bootstrap carousel template
  • Javascript Bootstrap's grid system, navigation bar and carousel detailed explanation

<<:  Mysql solution to improve the efficiency of copying large data tables

>>:  Detailed explanation of nginx-naxsi whitelist rules

Recommend

Several ways to add timestamps in MySQL tables

Scenario: The data in a table needs to be synchro...

Zabbix configuration DingTalk alarm function implementation code

need Configuring DingTalk alarms in Zabbix is ​​s...

What to do if the online MySQL auto-increment ID is exhausted

Table of contents Table definition auto-increment...

Example of using CASE WHEN in MySQL sorting

Preface In a previous project, the CASE WHEN sort...

18 Amazing Connections Between Interaction Design and Psychology

Designers need to understand psychology reading n...

Web Design: When the Title Cannot Be Displayed Completely

<br />I just saw the newly revamped ChinaUI....

MySQL restores data through binlog

Table of contents mysql log files binlog Binlog l...

Attributes in vue v-for loop object

Table of contents 1. Values ​​within loop objects...

A brief analysis of the count tracking of a request in nginx

First, let me explain the application method. The...

CSS sets the box container (div) height to always be 100%

Preface Sometimes you need to keep the height of ...

Thoughts on truncation of multi-line text with a "show more" button

I just happened to encounter this small requireme...

Detailed steps to install RabbitMQ in docker

Table of contents 1. Find the mirror 2. Download ...

Detailed explanation of the problems and solutions caused by floating elements

1. Problem Multiple floating elements cannot expa...

How to disable web page styles using Firefox's web developer

Prerequisite: The web developer plugin has been in...