Vue.js 中过渡效果的使用

2016-10-21 18:16:05 +08:00
 js0816

问个小问题 我没查到 我写了个 demo 用 script 引入 vue.js 文件 然后使用 Vue 中的过渡效果,:transition="transitionName" 巴拉巴拉··· 可以实现过渡效果, 可是 我们项目 vuejs+webpack+vuex 的 我在项目中一个组件中用我 demo 中同样的过渡效果却不起作用 求教

4098 次点击
所在节点    Vue.js
4 条回复
w88975
2016-10-21 18:18:08 +08:00
贴代码
js0816
2016-10-21 18:27:15 +08:00
<script type="text/javascript" src="http://sandbox.runjs.cn/uploads/rs/97/sqs1plm5/vue.min.js"></script>
</head>

<body>
<div id="app">
<div v-if="show" v-bind:transition="'expand'" class="active">hello</div>
<button @click="showme">点击我</button>
</div>
</body>

</html>
<style>
.active {

height: 30px;
padding: 10px;
background-color: #eee;
overflow: hidden;
}

/* 必需 */

.expand-transition {
transition: all .3s ease;
}


/* .expand-enter 定义进入的开始状态 */


/* .expand-leave 定义离开的结束状态 */

.expand-enter,
.expand-leave {
height: 0;
padding: 0 10px;
opacity: 0;
}
</style>
<script>
new Vue({
el: '#app',
data: {
show: true,
},
methods: {
showme: function() {
if (this.show) {
this.show = false;
} else {
this.show = true;
}
}
},
});
</script>
969054301
2016-10-22 15:23:39 +08:00
vuejs 版本一样么?
js0816
2016-10-22 17:58:44 +08:00
@969054301 已经解决了 的确是 2.0 用法变了

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/314484

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX