我正在尝试使用css过渡属性通过添加#app
类将.lightTheme
背景从黑色淡化为白色。 .lightTheme
类的添加按预期工作,但转换不起作用。
我是否必须添加Vue transition element?如果是这样怎么样? #app
没有离开/进入dom - 我只是想为它的动画制作动画(如果可能,我不想添加不必要的代码!
HTML
<div id="app" v-bind:class="{ lightTheme: isActive }">
<button v-on:click="toggleTheme">Change theme</button>
</div>
JS
new Vue({
el: '#app',
data: {
isActive: false
},
methods: {
toggleTheme: function(){
this.isActive = !this.isActive;
// some code to filter users
}
}
});
CSS
#app {
background: black;
transition: 1s;
}
#app.lightTheme {
background: white;
}
谢谢!
答案 0 :(得分:4)
要回答您的问题,如果您必须使用此类转换,则答案为否。您提出的解决方案应该开箱即用。
可能还有其他东西干扰了您的代码,但您发布的代码是正确的。
我附上了工作片段。
new Vue({
el: '#app',
data: {
isActive: false
},
methods: {
toggleTheme: function(){
this.isActive = !this.isActive;
}
}
});
#app {
background: black;
transition: 1s;
}
#app.lightTheme {
background: white;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.4.4/vue.min.js"></script>
<div id="app" :class="{ lightTheme: isActive }">
<button @click="toggleTheme">Change theme</button>
</div>