百变鹏仔-专注前端行业精选
在VUE中使用v-show简单实现一个选项卡切换效果
作者:鹏仔先生日期:2020-06-01 17:06:31浏览:1661分类:JavaScript
选项卡是网站非常常见的效果,大多都是利用了css属性中的display,下面鹏仔给大家带来vue中使用v-show来简单实现选项卡效果。
在开始之前,大家得先在页面中引入VUE
<style> #app{ width: 400px; height: 250px; position: relative; } .box01{ width:100%; height: 100%; background: palevioletred; position: absolute; } .box02{ width:100%; height: 100%; background: #6b46e5; position: absolute; } </style>
<div id="app"> <div class="hea"> <a href="javascript:;" @click="tab(1)">box1</a> <a href="javascript:;" @click="tab(2)">box2</a> </div> <div class="box011"> <div class="box01" v-show="falg == 1"> <p>第1个box</p> </div> <div class="box02" v-show="falg == 2"> <p>第2个box</p> </div> </div> </div>
<script> (function () { new Vue({ el:"#app", data:{ falg:1 }, methods:{ tab(n){ this.falg = n } } }) })() </script>
v-show 是根据表达式之真假值,切换元素的 display CSS 属性。
当条件变化时该指令触发过渡效果。
v-show不管初始条件是什么,元素总是会被渲染,只是简单地基于 CSS属性 进行display切换。
手机扫码访问
猜你还喜欢
- 11-01 vue中实现代码高亮
- 08-09 vue动态修改网站的icon图标
- 07-08 VUE中ECharts提示框tooltip自动切换
- 07-03 网页中生成微信小程序二维码
- 06-28 vue实现表格自动滚动功能 vue-seamless-scroll
- 06-25 uniapp页面跳转的几种方式
- 04-19 VUE实现点击复制
- 04-16 vue将页面生成图片 vue生成海报
- 04-16 vue路由切换滑动效果 vue页面跳转交互 vue实现动画跳转
- 04-16 table固定表头和列 css实现表格固定表头
- 04-07 vue跳转页面清除历史记录,页面跳转删除历史记录
- 02-22 VUE You are using the runtime-only build of Vue where the template compiler is not available. Either
取消回复欢迎 你 发表评论:
- 搜索
- 随机tag
暂无评论,来添加一个吧。