Detailed explanation of using backgroundImage to solve the image carousel switching

Detailed explanation of using backgroundImage to solve the image carousel switching

Implementing carousel with a single DOM node

You can use backgroundImage to add multiple images and offset them to achieve a carousel effect.

  • Create a div and attach an image to it using backgroundImage
  • Use backgroundPosition to adjust the position
  • Using css3 transition to adjust transition
  • It can replace simple image switching
  /**
        * Play picture */
    function playImage(src) {
        if (animaitionFinshed) return;
        if (!_imageEl) {
            _imageEl = document.createElement('div')
            _imageEl.className = `swiper_container`;
            _imageEl.style.backgroundImage = `url(${src.url})`;
            _imageEl.setAttribute("data-img", src.url);
            elContainer.appendChild(_imageEl);
        } else {
            animaitionFinshed = true;
            let width = elContainer.clientWidth, height = elContainer.clientHeight;
            let preImage = _imageEl.getAttribute("data-img");
            _imageEl.style.backgroundImage = `url(${preImage}),url(${src.url})`;
            _imageEl.style.backgroundPositionX = `center,${width + 20}px`;
            setTimeout(() => {
                _imageEl.style.transition = "all 0.8s ease";
                _imageEl.style.backgroundPositionX = `-${width + 20}px,center`;
            }, 0);

            setTimeout(() => {
                _imageEl.style.transition = "none";
                _imageEl.style.backgroundImage = `url(${src.url}) `;
                _imageEl.style.backgroundPositionX = `center`;
                _imageEl.setAttribute("data-img", src.url)
                animaitionFinshed = false;
            }, 800)
        }
    }

source code

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.

<<:  Summary of the differences between Html, sHtml and XHtml

>>:  Example of deploying MySQL on Docker

Recommend

Detailed example of changing Linux account password

Change personal account password If ordinary user...

Use a table to adjust the format of the form controls to make them look better

Because I want to write a web page myself, I am al...

How to use Docker to build OpenLDAP+phpLDAPadmin unified user authentication

1. Background Use LDAP to centrally manage operat...

How MLSQL Stack makes stream debugging easier

Preface A classmate is investigating MLSQL Stack&...

MySQL 5.7.27 installation and configuration method graphic tutorial

MySQL 5.7.27 detailed download, installation and ...

Native JS to implement sharing sidebar

This article shares a sharing sidebar implemented...

Docker renames the image name and TAG operation

When using docker images, images with both REPOSI...

JavaScript data transmission between different pages (URL parameter acquisition)

On web pages, we often encounter this situation: ...

Element-ui directly clicks on the cell in the table to edit

Table of contents Achieve results Implementation ...

Linux Dig command usage

Dig Introduction: Dig is a tool that queries DNS ...

Detailed explanation of Tomcat core components and application architecture

Table of contents What is a web container? The Na...

HTML table tag tutorial (26): cell tag

The attributes of the <TD> tag are used to ...

How to configure path alias for react scaffolding

The react version when writing this article is 16...