other pages are normal when the page is switched, but when the browsing history returns to the personal page
the orange part of the page switching animation will be stuck at the bottom for about 0.2s and then
bounce to the top, instead of sliding around as other pages normally switch
the following is the CSS code for switching animation
.Router {
transition: all 0.4s ease;
-webkit-overflow-scrolling: touch;
}
.resume-left-enter,
.notify-right-leave-active {
opacity: 0;
-webkit-transform: translate(-100%, 0);
transform: translate(-100%, 0);
}
.resume-right-enter,
.notify-left-leave-active {
opacity: 0;
-webkit-transform: translate(100%, 0);
transform: translate(100%, 0);
}