博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue弹出框动画
阅读量:5302 次
发布时间:2019-06-14

本文共 953 字,大约阅读时间需要 3 分钟。

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/animate.css" />
<style type="text/css">
.dv {
width: 200px;
height: 400px;
transform: translateY(100%);
position: fixed;
right: 0;
bottom: 0;
z-index: 5;
}
.btn {
position: fixed;
right: 0;
bottom: 0;
z-index: 10;
}
.dis {
}
</style>
</head>

<body>

<div id="app">
<div class="dv" v-bind:class="{animated:da,slideOutDown:isactive,slideInUp:!isactive}">

</div>

<button type="button" v-on:click="open">点击</button>
<button type="button" v-on:click="close">点击2</button>
</div>
</body>
<script src="js/vue.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
isactive: true,
da:false
},
methods: {
open: function() {
this.isactive = false;
this.da=true;
},
close:function () {
this.isactive=true;
}
}
})
</script>

</html>

转载于:https://www.cnblogs.com/ydam/p/9217076.html

你可能感兴趣的文章
js 变量大小写
查看>>
linq 动态判断
查看>>
sublime 3 随笔
查看>>
JavaScript入门小案例
查看>>
https证书
查看>>
jQuery Ajax 实例 ($.ajax、$.post、$.get)
查看>>
Linux系统的启动原理
查看>>
JDesktopPane JInternalFrames
查看>>
错误The request sent by the client was syntactically incorrect ()的解决
查看>>
【Python】安装geopy
查看>>
Sqlserver_小工具_批量字段约束处理
查看>>
用JS做的时钟
查看>>
linux病毒
查看>>
关于Linux Mint下的pluma软件打开txt文本文件有时候乱码的解决办法
查看>>
不良代码展示-Activity中使用线程的例子
查看>>
JS中检测数据类型的四种方式及每个方式的优缺点
查看>>
POJ 2828 线段树 逆序插入
查看>>
input框下沉问题(和其他图标对不齐)
查看>>
2018.4.8 总结
查看>>
用JS画斐波那契螺旋线(黄金螺旋线)
查看>>