ustbhuangyi / vue-sell

:rice: Vue.js高仿饿了么外卖App课程源码 http://coding.imooc.com/class/74.html
3.46k stars 1.36k forks source link

shopcart小球动画 #57

Open nanyang24 opened 6 years ago

nanyang24 commented 6 years ago

源码shopcart关于小球的CSS有问题

应改为

 .ball-container {
            .ball {
                position: fixed;
                left: 32px;
                bottom: 22px;
                z-index: 200;
                .inner {
                    width: 16px;
                    height: 16px;
                    border-radius: 50%;
                    background: rgb(0, 160, 220);
                }
                &.drop-enter-active {
                    transition: all .4s cubic-bezier(.49, -0.29, .75, .41);
                    .inner {
                        transition: all .4s linear;
                    }
                }
            }
        }