2

我目前有一个 vue 组件,用于选择要订购的饮料。您可以增加或减少每种类型的饮料量。

有 2 个按钮(增量和减量),当该类型的订购饮料数量等于 0 时,需要隐藏减量按钮。这可以通过使用设置css 属性:class="drink.amount > 0 ? 'visible':'invisible'"的 tailwind 类轻松完成。visibility:hidden使用此方法时,它看起来像:

显示垂直对齐按钮的图像

现在我尝试实现 css 动画(滑动饮料块下方的按钮以隐藏它,然后从 dom 中隐藏)。我想使用 vue 转换组件来实现这一点,因为它在整个应用程序中被大量使用。

现在我遇到的问题是 vue 转换组件仅适用于有限数量的 vue 函数,其中v-ifv-show. v-if从 dom 中删除 html。v-show设置属性display:none这两个函数都具有移动按钮的效果: 显示按钮缺少中心左侧的减量按钮的图像

我想知道如何使用 vue 过渡组件并在没有动画的情况下获得请求的对齐按钮。

<div v-for="drink in drinks" class="w-full flex">
    <div class="mx-auto flex">
        <transition name="transition-slide-right">
            <div class="bg-white w-16 h-16 flex justify-center items-center mt-12"
                 v-show="drink.amount">
                <p>-</p>
            </div>
        </transition>
        <div class="bg-brand w-32 h-24 flex justify-center items-center my-8 z-30">
            <p>{{drink.name}} ({{drink.amount}})</p>
        </div>
        <div class="bg-white w-16 h-16 flex justify-center items-center mt-12">
            <p>+</p>
        </div>
    </div>
</div>

以及随附的脚本。

<script>
    export default {
        name: "CreateTransaction",
        data: function() {
            return {
                drinks: [
                    {name: 'Cola', price: '1.0', amount: 1},
                    {name: 'Sinas', price: '1.0', amount: 0}
                ],
            }
        }        
    }
</script>

最后是css:

.transition-slide-right-enter-active, .transition-slide-right-leave-active {
    transition: transform .5s;
}

.transition-slide-right-enter, .transition-slide-right-leave-to {
    transform: translateX(100%);
}

作为当前的解决方法,我删除了转换组件,添加了transition-slide-right-enter-active类,如果计数 == 0,我有条件地添加transition-slide-right-enter类。这不会隐藏元素,但不需要隐藏它,因为我在中心块下方移动。

4

1 回答 1

-1

你可以试试下面的代码

<script src="https://cdn.jsdelivr.net/npm/vue@2.5.16/dist/vue.js"></script>
<div class="row" id="todo-list-example">
    <div v-for="(drink,index) in drinks" class="w-full flex">
         <transition name="transition-slide-right"><button v-show="drink.amount" type="button" class="btn btn-danger" v-on:click="click1(index)">-</button></transition>
       
            <a class="btn btn-success" >{{drink.name}} ({{drink.amount}})</a>
        
         <button type="button" class="btn btn-danger" v-on:click="click2(index)">+</button>
    </div>
</div>
<style>
.w-full{margin:10px 0px;}
   .transition-slide-right-enter-active, .transition-slide-right-leave-active {
    transition: transform .5s;
}

.transition-slide-right-enter, .transition-slide-right-leave-to {
    transform: translateX(100%);
}

</style>
<script>
    new Vue({
  el: '#todo-list-example',
 data(){
            return {
                drinks: [
                    {name: 'Cola', price: '1.0', amount: 1},
                    {name: 'Sinas', price: '1.0', amount: 1}
                ],
            }
        },
        methods:{
            click1:function(index){
                this.drinks[index].amount=this.drinks[index].amount-1;
            },
            click2:function(index){
                this.drinks[index].amount=this.drinks[index].amount+1;
            }
        }    
})
</script>

于 2018-06-30T16:40:30.730 回答