How to realize the effect of card reversal by Vue
This article mainly explains "Vue how to achieve card flip effect", the content of the article is simple and clear, easy to learn and understand, the following please follow the editor's ideas slowly in depth, together to study and learn "Vue how to achieve card flip effect" bar!
1. Realize the effect
Achieve the flip effect of a click flipping along the central Y axis.
two。 Method
Divided into the front (front) and the back (behind), the div of behind is set to flip 180 degrees through the css layout to hide behind the div of front, click to perform the flip animation, set the div display of behind when performing the flip animation, and then hide the div of front. Repeat in turn.
3. Specific code
Export default {name: "try", data () {return {isRolling:false} # try {.rollbox {position: relative; perspective: 1000px; width:200px; height: 400px; margin:100px auto; & _ front, & _ behind {transform-style: preserve-3d; / / indicates whether transition-duration:.5s is visible when all child elements are rendered on the back of the backface-visibility: hidden; / / element in 3D space Transition-timing-function: "ease-in"; background:#008080; .contentbox {width:200px; height: 400px; display: flex; justify-content: center; align-items: center; > img {width:100px;}} & _ behind {transform: rotateY (180deg); visibility:hidden; / / element is not visible, but occupies space position: absolute; top:0 Bottom:0; right: 0; left: 0;} .box _ rolling {.rollbox _ front {transform: rotateY (180deg); visibility:hidden;} .rollbox _ behind {transform: rotateY (360deg); visibility:visible } Thank you for your reading, the above is the content of "how to achieve the card flip effect of Vue". After the study of this article, I believe you have a deeper understanding of how Vue can achieve the card flip effect, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!