vue過渡動畫使用了window.requestAnimationFrame()方法來告訴瀏覽器執(zhí)行重繪動畫逆甜,但是瀏覽器的重繪有16.7ms的時間間隔传货,因此密似,vue的過渡動畫和其他元素的css動畫進行銜接時劫樟,其他元素的css動畫需要等待16.7ms.
.rightBox-enter-active, .rightBox-leave-active {
transition:right .6s ease;
}
.rightBox-enter-to, .rightBox-leave {
right:2px;
}
.rightBox-enter, .rightBox-leave-to {
right: -450px;
}
.right-content-arrow {
? border-radius:15px 0 0 15px;
transition:right .6s 16.7ms ease;
}