vue关键帧动画

<style>
#box {
width : 100px ;
height : 100px ;
background-color : red
}

@keyframes come-in {
0%{
transform : rotate ( 45deg );
opacity : 0 ;
}
50%{
transform : rotate ( 45deg );
opacity : 1 ;
}
100%{
transform : rotate ( 0 );
opacity : 1 ;
}
}
@keyframes come-out {
0%{
transform : rotate ( 0 );
opacity : 1 ;
}
50%{
transform : rotate ( 45deg );
opacity : 1 ;
}
100%{
transform : rotate ( 45deg );
opacity : 0 ;
}
}
/* 在transtion标签中使用关键帧动画,只需要设置 enter-active和leave-active两个class即可,在class中设置要执行的动画*/

.ani-enter-active {
animation :come-in 1s ;
}
.ani-leave-active {
animation :come-out 1s ;
}


#d2 {
width : 500px ;
height : 100px ;
background-color : rgb ( 0 , 255 , 136 ) ;
}

.com {
animation :come-in 1s ;
}
.go {
animation :come-out 1s ;
}
< /style>


</head>
<body>
<div id = "app" >
<input type = "checkbox" v-model = "show" >

<transition name = "ani" >
<div id = "box" v-show = "show" ></div>
</transition>


<!-- 使用关键帧动画,也可以直接在transition标签中直接指定动画所在的class -->
<!-- 这样可以方便的使用第三方动画库(例如animate。css)中的关键帧动画 -->

<transition
enter-active-class = "rollIn animated"
leave-active-class = "hinge animated" >
<div id = "d2" v-show = "show" ></div>
</transition>
</div>


<script src = "vue.js" > < /script>
<script>
new Vue ({
el: "#app" ,
data: {
show: false
}
})
< /script>
</body>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值