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 ...
随机推荐
- Virtualbox EFI 写入startup.nsh
安装好的Debian系统,重启后会因为找不到入口而无法启动.定位grubx64.efi文件,可用ls直接查找或一步一步查找ls fs0:\EFI\debian\grubx64.efi edit fs0 ...
- 使用虚拟环境-Python虚拟环境的安装和配置-virtualenv
打开windows命令终端(cmd)安装虚拟环境 virtualenv(如果你执行了上面查看python版本的语句,那么要先使用exit()方法先退出) pip3 install virtualenv ...
- mac上gitclone出现password: Permission denied, please try again.
问题在mac上拉取项目出现一下问题,然后我输入密码还是这样的提示. password: Permission denied, please try again.1分析解决情况1:git地址为http协 ...
- win10+py38环境分分钟装好geopandas
python版本是anaconda自带3.8,尝试了下面这个网上最推荐的安装方法 conda install --channel conda-forge geopandas 但多次以失败告终,看了几个 ...
- 记录解决方案(sqlserver篇)
一个月的补卡次数不超过三次(即统计一个月内某人的补卡次数) 表结构是某人一天内的四次打卡状态,这样是统计当月补卡的天数了(错误) select count(*) from [Proc_HR_Punch ...
- Finance财务软件(权限管理专题)
我们支持按模块对用户授权 如上所示,我们对用户test进行授权.test登录系统后将看不到未授权的菜单:
- Jmeter(三十九) - 从入门到精通进阶篇 - Jmeter配置文件的刨根问底 - 上篇(详解教程)
------------------------------------------------------------------- 转载自:北京-宏哥 https://www.cnblogs.co ...
- 通过ASP生成html纯静态页面的简单示例
本站收录这篇文章通过ASP生成html纯静态页面的简单示例,详细解说文章中相关静态 asp 技术与知识,欢迎能给大家一些在这方面的支持和帮助!下面是详细内容: 原理:通过浏览器传送变量,如 http: ...
- File类的基本用法
using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Tex ...
- antd Vue--this.$confirm弹窗使用
看API中this.$confirm弹窗使用不对 讲的也不明确,在此记录下正确的用法 this.$confirm("确认删除文件?",{ type:'error'}).then(( ...