我想在进度条上添加一个粒子效果类动画,如下图: ex.gif

ex2.gif

这个可以实现吗?

2020-10-11 11:42创建
共1个回答
XL
游客xlRpUN

你可以通过重写CSS样式来实现:

#nprogress .bar {
        top: 109px!important;
    }
#nprogress .spinner {
        top: 120px!important;
}

.peg {
        // replace this with your animation
        transform: rotate(0deg) translate(0px, -0px)!important;
 }