当前位置:   article > 正文

Vue 牌面翻转效果_vue实现块级翻转

vue实现块级翻转

1.实现效果

实现一个点击沿中心Y轴翻转的翻转效果。
在这里插入图片描述

2.方法

分前(front)、后(behind)两部分,behind的div通过css布局设定为将其翻转180度在front的div后面隐藏不显示,点击执行翻转动画,在执行翻转动画的时候设置behind的div显示,之后将front的div隐藏.依次反复。

3.具体代码

<template>
<div id="try">
	<!-- box_rolling下执行正面翻转动画   -->
<div class="rollbox" :class="{'box_rolling':isRolling}" @click="isRolling = !isRolling">
	<!-- 前面div -->
	<div class="rollbox_front">
		<div class="contentbox">
			<img src="@/assets/images/s1.png"/>
		</div>
	</div>
	<!-- 后面div -->
	<div class="rollbox_behind">
		<div class="contentbox">
			<img src="@/assets/images/s2.png"/>
		</div>
	</div>
</div>
</div>
</template>
<script>

export default{
	name:'try',
	data(){
		return{
			isRolling:false
		}
	}
}
</script>
<style lang='scss'>
#try{
	.rollbox{
		position: relative;
    	perspective: 1000px;
		width:200px;
		height: 400px;
		margin:100px auto;

    &_front,
    &_behind{
			transform-style: preserve-3d; //表示所有子元素在3D空间中呈现
     		backface-visibility: hidden;  //元素背面向屏幕时是否可见
      		transition-duration:.5s;
  			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;  //元素不可见,但占据空间
      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;
    }
  }
}
</style>

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签