Pure HTML and CSS to achieve JD carousel effect

Pure HTML and CSS to achieve JD carousel effect

The JD carousel was implemented using pure HTML and CSS, without adding dynamic effects, and mainly using positioning knowledge.

, as shown in the figure are two side arrow pictures.

<!DOCTYPE html>
<html lang="en">
<head> <meta charset="UTF-8">
    <title>LunBo</title>
    <style>
        *{
            padding: 0;
            margin: 0;
        }
        li{
            list-style: none;
        }
        .lunbo{
            margin: 40px auto;
            height: 470px;
            width: 590px;
            position: relative;
        }
        .left,.right{
            position: absolute;
            top: 50%;
            margin-top: -18px;
            width: 24px;
            height: 36px;
        }
        .left{
            left: 0;
        }
        .right{
            right: 0;
        }
        .lunbo ul{
            height: 18px;
            width: 151px;
            background: rgba(255,255,255,.3);
            position: absolute;
            bottom: 10px;
            left: 50%;
            margin-left: -76px;
            border-radius: 10px;
        }
        .lunbo li{
            height: 14px;
            width: 14px;
            border-radius: 50%;
            background-color: #fff;
            float: left;
            margin: 2px;
        }
        .lunbo .current{
            background-color: #f40;
        }
    </style>
</head>
<body>
    <div class="lunbo">
        <img src="images/lunbo.jpg" alt="">
        <div class="left"><img src="images/left.png" alt=""></div>
        <!-- You can also use a link and then use background -->
        <div class="right"><img src="images/right.png" alt=""></div>
        <ul>
            <li class="current"></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
            <li></li>
        </ul>
    </div>
</body>
</html>

The following effects were achieved

Summarize

The above is the pure HTML and CSS to achieve the JD carousel effect introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  The unreasonable MaxIdleConns of MySQL will cause short connections

>>:  Five practical tips for web form design

Recommend

Detailed tutorial on compiling and installing python3.6 on linux

1. First go to the official website https://www.p...

Detailed explanation of MySQL three-value logic and NULL

Table of contents What is NULL Two kinds of NULL ...

Solve MySQL deadlock routine by updating different indexes

The previous articles introduced how to debug loc...

How to configure Linux to use LDAP user authentication

I am using LDAP user management implemented in Ce...

Node+express to achieve paging effect

This article shares the specific code of node+exp...

WebStorm cannot correctly identify the solution of Vue3 combined API

1 Problem Description Vue3's combined API can...

Native JavaScript to achieve skinning

The specific code for implementing skinning with ...

Detailed explanation of the use of HTML header tags

HTML consists of two parts: head and body ** The ...

How to use nginx as a load balancer for mysql

Note: The nginx version must be 1.9 or above. Whe...

JavaScript imitates Xiaomi carousel effect

This article is a self-written imitation of the X...