This article mainly introduces js CSS3 to achieve card rotation switching effect in detail. It has a certain reference value. Interested friends can refer to it
We often see it in the game Some cards have the effect of switching left and right. The middle one is the most eye-catching. Swipe left or right to switch to another one. Today we will use CSS3 to achieve this effect.
Let’s take a look at a demo first. You can adjust the specific style yourself:
(You can click the button to switch on PC, and on mobile Swipe left and right to switch)
From the effect, we can see that these 5 ps can be switched left and right. Each time you switch, there will always be one displayed in a conspicuous position in the middle. When switching, it seems that p has been moved and DOM additions and deletions have been performed. But if you examine the elements, you can see that the DOM element has not changed its position, it is still in that position. We just switched the class on each element, so the position on the page seems to have changed.
In fact, the principle is this: without adding or deleting DOM, write a specific style for each p in the position, perform absolute positioning for each p, and then rotate the styles. Each switch has a 0.6s transition process:
-webkit-transition: all 0.6s; transition: all 0.6s;
For example, the classes from left to right are: item_0, item_1, item_cur, item_3 , item_4, each class is the position of the current p. When sliding to the left, the p on the right will switch to the middle, so that the class becomes item_1, item_cur, item_3, item_4, item_0 from left to right.
var egg_change = function(type){ var $demo = $('.demo'), index = parseInt( $demo.attr('index_cur')||2 ), $item = $('.demo .item'), len = $item.length; if( type=='left' ){ index = (index+1)%len; }else{ index = (index-1+len)%len; } $demo.attr('index_cur', index); $item.removeClass('item_0 item_1 item_3 item_4 item_cur'); $item.eq( (index-2+len)%len ).addClass('item_0'); $item.eq( (index-1+len)%len ).addClass('item_1'); $item.eq(index).addClass('item_cur'); $item.eq( (index+1)%len ).addClass('item_3'); $item.eq( (index+2)%len ).addClass('item_4'); }
The above is the entire content of this article. I hope it will be helpful to everyone’s study. For more related content, please pay attention to the PHP Chinese website!
Related recommendations:
How does JavaScript determine whether the browser supports CSS3 attributes
js and css3 to achieve rotation effects
jQuery and CSS3 folding card drop-down list box to achieve the effect
The above is the detailed content of js and CSS3 to achieve card rotation switching effect. For more information, please follow other related articles on the PHP Chinese website!

In a perfect world, our projects would have unlimited resources and time. Our teams would begin coding with well thought out and highly refined UX designs.

Oh, the Many Ways to Make Triangular Breadcrumb Ribbons

SVG has its own set of elements, attributes and properties to the extent that inline SVG code can get long and complex. By leveraging CSS and some of the forthcoming features of the SVG 2 specification, we can reduce that code for cleaner markup.

You might not know this, but JavaScript has stealthily accumulated quite a number of observers in recent times, and Intersection Observer is a part of that

We may not need to throw out all CSS animations. Remember, it’s prefers-reduced-motion, not prefers-no-motion.

PWA (Progressive Web Apps) have been with us for some time now. Yet, each time I try explaining it to clients, the same question pops up: "Will my users be

It's extremely surprising to me that HTML has never had any way to include other HTML files within it. Nor does there seem to be anything on the horizon that

There are a lot of different ways to use SVG. Depending on which way, the tactic for recoloring that SVG in different states or conditions — :hover,


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment