<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-多个卡片翻转动效的更多相关文章

  1. No.4 - 3D 空间的卡片翻转动效

    参考 ①张鑫旭http://www.zhangxinxu.com/wordpress/2012/09/css3-3d-transform-perspective-animate-transition/ ...

  2. 基于vue实现上下滑动翻页效果

    18年年底的时候,一直在做年度报告的H5页面,因为项目需要,需要实现上下滑动翻页,并且上滑的页面比正常页面的比例要缩小一定比例. 效果类似于http://www.17sucai.com/pins/de ...

  3. 转载 vue-awesome-swiper - 基于vue实现h5滑动翻页效果

    说到h5的翻页,很定第一时间想到的是swiper.但是我当时想到的却是,vue里边怎么用swiper?! 中国有句古话叫:天塌下来有个高的顶着. 在前端圈里,总有前仆后继的仁人志士相继挥洒着热汗(这里 ...

  4. pc端vue 滚动到底部翻页

    html: <div class="list" ref="scrollTopList"> <div class="listsmall ...

  5. [LeetCode] Card Flipping Game 翻卡片游戏

    On a table are N cards, with a positive integer printed on the front and back of each card (possibly ...

  6. Nuxt|Vue仿探探/陌陌卡片式滑动|vue仿Tinder拖拽翻牌效果

    探探/Tinder是一个很火的陌生人社交App,趁着国庆假期闲暇时间倒腾了个Nuxt.js项目,项目中有个模块模仿探探滑动切换界面效果.支持左右拖拽滑动like和no like及滑动回弹效果. 一览效 ...

  7. MVVM大比拼之vue.js源码精析

    VUE 源码分析 简介 Vue 是 MVVM 框架中的新贵,如果我没记错的话作者应该毕业不久,现在在google.vue 如作者自己所说,在api设计上受到了很多来自knockout.angularj ...

  8. vue.js源码精析

    MVVM大比拼之vue.js源码精析 VUE 源码分析 简介 Vue 是 MVVM 框架中的新贵,如果我没记错的话作者应该毕业不久,现在在google.vue 如作者自己所说,在api设计上受到了很多 ...

  9. javascript编程解决黑白卡片问题

    问题描述: 时间限制:1秒 空间限制:32768K 牛牛有n张卡片排成一个序列.每张卡片一面是黑色的,另一面是白色的.初始状态的时候有些卡片是黑色朝上,有些卡片是白色朝上.牛牛现在想要把一些卡片翻过来 ...

  10. jQuery中turn.js(翻页效果)学习笔记

    Turn.js是一个内置的jQuery翻页插件1 html中引入<script type="text/javascript" src="js/turn.js&quo ...

随机推荐

  1. mybatis_01 初运行

    maven坐标 <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</ ...

  2. java中post推送json格式字符串

    最近项目中遇到post推送json格式字符串,之前写过推送json数据,调用失败,才发现是直接推送字符串,只不过字符串是json的格式. 在postman中调用如下: Java中代码如下: /** * ...

  3. Python——02.变量及标识符

    变量概念: -- 字面量:与字面上显示值一致的量称作字面量,在程序中可直接使用字面量:abc,123, 我是XX,等等 -- 变量:变量可通过赋值保存字面量,变量是可变的,跟随赋值的字面量不同而变化 ...

  4. 【TensorFlow】InternalError: Failed copying input tensor

    TensorFlow-GPU 执行模型训练时报错: InternalError: Failed copying input tensor from /job:localhost/replica:0/t ...

  5. clickhouse杂记

    1,clickhouse show tables SHOW [TEMPORARY] TABLES [FROM ] [LIKE ''] [LIMIT ] [INTO OUTFILE ] [FORMAT ...

  6. 使用Visual Studio工具将ActiveX控件的COM类库转换为窗体控件

    1:转换目的 Windows窗体只能继承Windows 窗体控件.如果要承载ActiveX控件,必须生成AxHost派生的包装器控件. 在使用WPF呈现ActiveX控件的时候,需要将com类库(oc ...

  7. unity3d Time.deltaTime个人理解

    官方的解释是:静态只读属性,时间增量,渲染上一帧所花费的时间看下面的代码 /// <summary> /// 每帧刷新 /// </summary> void Update() ...

  8. ConstantBuffer

    Constant Buffer的高效使用,让你码出质量 https://zhuanlan.zhihu.com/p/35830868 Unity ConstantBuffer的一些解析和注意 https ...

  9. rust在windows上编译成liunx可执行程序

    一.rust编译文件 cargo build 或 cargo build --release 发布构建 二.安装 x86_64-unknown-liunx-musl target rustup tar ...

  10. SAP 登入增强EXIT_SAPLSUSF_001

    启用方式 SUSR0001->执行->激活