vue-多个卡片翻转动效
<van-grid :column-num="2" class="content" :border="false" >
<van-grid-item class="box" v-for="(item2,index2) in list" :key="index2" >
<div class="inner-box" v-if="!item2.isBack" @touchstart="touchstartevent(item2,index2)" @touchmove="touchmoveevent(item2,index2)" @touchend="touchendevent(item2,index2)" >
<span>正面</span>
</div>
<div class="inner-box-back" @click.stop="deleteModel(item2,index2)" v-else> <span>删除</span> </div>
</van-grid-item>
</van-grid>
// 模板长按删除功能
touchstartevent(item,index){
this.closeDeleteevent()//清除删除图标事件
var self = this;
this.timeoutEvent = 0;
this.timeoutEvent = setTimeout(() => {
self.enterLongevent(item,index);//长按执行的操作
},1000)
},
enterLongevent(item,index){
item.isBack = true;
console.log("长按了呀")
},
touchmoveevent(item,index){
console.log("移动了")
clearTimeout(this.timeoutEvent)
this.timeoutEvent = 0;
},
touchendevent(item,index){
console.log("离开屏幕")
clearTimeout(this.timeoutEvent)
this.timeoutEvent = 0;
},
.inner-box{
width: 100%;
border-radius: 10px;
border: 1px solid #f2f2f2;
-webkit-touch-callout: none!important;
-webkit-user-select: none!important;
-moz-user-select:none;
-ms-uese-select:none;
user-select: none;
animation: mymoveone 0.5s ease-in-out;
}
@keyframes mymoveone{
from{
opacity: 0;
transform: rotateY(90deg);
}
to{
opacity: 1;
transform: rotateY(0);
}
}
.inner-box-back{
width: 100%;
height: 99px;
animation: mymove 0.5s ease-in-out;
border-radius: 10px;
border: 1px solid #f2f2f2;
background: fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: #333333;
}
@keyframes mymove{
from{
opacity: 0;
transform: rotateY(-90deg);
}
to{
opacity: 1;
transform: rotateY(0);
}
}
效果:
暂时无法显示
vue-多个卡片翻转动效的更多相关文章
- No.4 - 3D 空间的卡片翻转动效
参考 ①张鑫旭http://www.zhangxinxu.com/wordpress/2012/09/css3-3d-transform-perspective-animate-transition/ ...
- 基于vue实现上下滑动翻页效果
18年年底的时候,一直在做年度报告的H5页面,因为项目需要,需要实现上下滑动翻页,并且上滑的页面比正常页面的比例要缩小一定比例. 效果类似于http://www.17sucai.com/pins/de ...
- 转载 vue-awesome-swiper - 基于vue实现h5滑动翻页效果
说到h5的翻页,很定第一时间想到的是swiper.但是我当时想到的却是,vue里边怎么用swiper?! 中国有句古话叫:天塌下来有个高的顶着. 在前端圈里,总有前仆后继的仁人志士相继挥洒着热汗(这里 ...
- pc端vue 滚动到底部翻页
html: <div class="list" ref="scrollTopList"> <div class="listsmall ...
- [LeetCode] Card Flipping Game 翻卡片游戏
On a table are N cards, with a positive integer printed on the front and back of each card (possibly ...
- Nuxt|Vue仿探探/陌陌卡片式滑动|vue仿Tinder拖拽翻牌效果
探探/Tinder是一个很火的陌生人社交App,趁着国庆假期闲暇时间倒腾了个Nuxt.js项目,项目中有个模块模仿探探滑动切换界面效果.支持左右拖拽滑动like和no like及滑动回弹效果. 一览效 ...
- MVVM大比拼之vue.js源码精析
VUE 源码分析 简介 Vue 是 MVVM 框架中的新贵,如果我没记错的话作者应该毕业不久,现在在google.vue 如作者自己所说,在api设计上受到了很多来自knockout.angularj ...
- vue.js源码精析
MVVM大比拼之vue.js源码精析 VUE 源码分析 简介 Vue 是 MVVM 框架中的新贵,如果我没记错的话作者应该毕业不久,现在在google.vue 如作者自己所说,在api设计上受到了很多 ...
- javascript编程解决黑白卡片问题
问题描述: 时间限制:1秒 空间限制:32768K 牛牛有n张卡片排成一个序列.每张卡片一面是黑色的,另一面是白色的.初始状态的时候有些卡片是黑色朝上,有些卡片是白色朝上.牛牛现在想要把一些卡片翻过来 ...
- jQuery中turn.js(翻页效果)学习笔记
Turn.js是一个内置的jQuery翻页插件1 html中引入<script type="text/javascript" src="js/turn.js&quo ...
随机推荐
- 我与CSP的一点小事
今天是20220311 见了YG老师,感觉被打了鸡血.然后想当初研一的时候,有了这篇LeetCode习题集 现在突然有了一点刺激之后,决定记录下这次的CSP经历,说无论怎么样是the shit,这次就 ...
- 升级安装cuda
下载驱动: https://www.nvidia.com/Download/Find.aspx 在这里下载并按照指导安装: https://developer.nvidia.com/cuda-down ...
- color-color diagram data
- git的基本操作(一)
pwd: 显示当前所在的目录路径 ls: 列出当前目录的所有文件 touch: 新建一个文件 rm:删除一个文件 mkdir:新建一个目录 rm -r:删除一个目录 mv:移动一个文件到另一个文件中 ...
- agl---atumotive grade linux开篇
linux本人也玩过,捯饬过双系统win7+Ubuntu,搞过虚拟机跑fedora,做开发,除了觉得酷,能接触到整个程序开发.编译.链接,程序效率高外,没觉得啥好,关键生态也无丰富,我这种伪码农,也就 ...
- vuex状态管理器
vuex核心概念 // vuex中一共有五个状态 State Getter Mutation Action Module import Vue from 'vue' import Vuex from ...
- Qt excel操作相关
#include <QDebug> #include <QAxObject> #include <QStandardPaths> #include <QFil ...
- docker 启动 重启命令
启动 systemctl start docker 守护进程重启 sudo systemctl daemon-reload 重启docker服务 systemctl restar ...
- vector 搜罗最强版
vector 常见用法(以int类型为例) https://www.cnblogs.com/YJthua-china/p/6550960.html 概括描述总体vector,包括内存的探讨 https ...
- el-form不进行校验可能的原因
可能原因 el-form至少需要:model="你的数据form",:rules='你的校验规则' 的属性: 只能校验el-input,不能对原始input进行校验 (大坑).