Home  >  Article  >  Web Front-end  >  How to achieve flip effect in cs

How to achieve flip effect in cs

藏色散人
藏色散人Original
2021-04-13 10:40:083326browse

How to achieve the flip effect in css: 1. Set the perspective of the outer element; 2. Flip the second wrapping layer 180 degrees and set the transition speed; 3. Set "backface-visibility"; 4. Set "z-index" attribute; 5. Let "back" flip 180 degrees at the beginning.

How to achieve flip effect in cs

CSS3 realizes the flip effect

Today, we use relatively simple CSS3 to realize the flip effect.

Animation effect

How to achieve flip effect in cs

How to achieve flip effect in cs

##Effect analysis

When the mouse slides over the containing block , the element is flipped 180 degrees as a whole to achieve switching between the "front" and "reverse" sides.

HTML Analysis

Analysis:

.container, .flip are prepared to achieve animation effects. .front,.backEach package contains one picture. The HTML to achieve this effect is as follows:

<p class="container">
    <p class="flip">
        <p class="front">
            <img src="images/pic00.jpg" alt="">
        </p>
        <p class="back">
            <img src="images/pic01.jpg" alt="">
        </p>
    </p>
</p>
CSS analysis

1. Element layout

In order to achieve the above effect, element layout is performed first. Absolutely position

.front and .back relative to .flip so that they overlap at the same position. The code for the layout part is as follows:

    .container,.front,.back{width:380px;height:270px;}
    .flip{position:relative;}
    .front,.back{position:absolute;top: 0px;left: 0px;}
After setting up, we found that the picture of

.back is above .front, so .frontSet .fornt{z-index:2;}

Note: Do not set the overflow attribute to prevent elements from overflowing, this will cause 3D effects cannot be achieved.

w3 spec describes:

The following CSS property values ​​require the user agent to create a flattened representation of the descendant elements before they can be applied, and therefore force the used value of transform-style to flat:

  • overflow: any value other than visible.

  • opacity: any value less than 1.

  • filter: any value other than none.

  • clip: any value other than auto.

2. Implementation of animation effects

(1) In order to achieve animation effects, first set the following attributes to the ancestor elements

.container,.flip to trigger the 3D effect And set animation:

.container{perspective:1000;transform-style:preserve-3d;}
.flip{transition:0.6s;transform-style:preserve-3d;}
(2) Next, in order to prevent the back side from being exposed when the picture is flipped, set

backface-visibility to .front,.back Attributes:
.front,.back{backface-visibility:hidden;}

(3) In order to allow the containing block to flip 180 degrees when the mouse slides over it , to achieve switching between "positive" and "reverse" sides. Set

transform:rotateY(-180deg) to the element on the back, then we will not be able to see .back.

(4) Finally, when the user's mouse slides over the

.container containing block, .flip flips 180 degrees, so that .frontFlip 180 degrees, because the back side is hidden, so it cannot be seen; and .back, after flipping 180 degrees, returns to 0 degrees, showing the front side, so that we can see the back side .

The code is as follows:

    .container{perspective:1000;transform-style:preserve-3d;}
    .container,.front,.back{width:380px;height:270px;}
    .flip{position:relative;transition:0.6s;transform-style:preserve-3d;}
    .front,.back{position:absolute;top: 0px;left: 0px;backface-visibility:hidden;}
    .front{z-index:2;}
    .back{transform:rotateY(-180deg);}
    .container:hover .flip{transform:rotateY(180deg);}
Vertical flip effect implementation

The vertical effect is the same as the horizontal flip. But if you just replace rotateY with rotateX, then you will find that the picture is flipped with the top line.

Please note: In the above CSS code, I did not set the width and height for
.flip, so when applying transform:rotateY(180deg) to .flip , according to the default transform-origin value, the center point of the element is used as the basic point for flipping. The height of .flip here is 0, so of course it is flipped based on the top line. So there are two solutions:

  1. Set the same width for

    .flip as .front, .back high.

  2. Set the

    transform-origin:100% 135px/*half the height*/ attribute to .flip. OK, then you will find that vertical flipping is the effect you want!

Summary

1. Idea

(1) Set the outermost element

perspective to achieve 3D effect. (2) When the mouse slides over the outermost element, the second wrapping layer flips 180 degrees and sets the transition speed.
(3) The two flip blocks are absolutely positioned to achieve superposition at the same position. Also set
backface-visibility to avoid exposing the backside when implementing animation effects. (4) Set the
z-index attribute to .front so that it is in front when writing code and displaying. (5) Let
.back turn 180 degrees at the beginning to show people from the back.

2. Problems encountered:

(1) In order to make two pictures of different sizes the same size in the package block, the overflow attribute is used, and the 3D effect cannot be achieved. . Solution: Set width:100%;height:100%; for img
(2) Did not realize that the height of .flip is 0, Therefore, the standard point error causes different effects when flipping vertically.
(3) Only by writing more can you find more errors, and then you will know how to find errors and how to solve them.

[Recommended learning: css video tutorial]

The above is the detailed content of How to achieve flip effect in cs. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn