123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- import NProgress from 'nprogress'
- // 创建style标签并添加样式
- const styleContent = `
- #nprogress {
- pointer-events: none;
- }
- #nprogress .bar {
- background: #29d;
- position: fixed;
- z-index: 1031;
- top: 0;
- left: 0;
- width: 100%;
- height: 2px;
- }
- #nprogress .peg {
- display: block;
- position: absolute;
- right: 0px;
- width: 100px;
- height: 100%;
- box-shadow: 0 0 10px #29d, 0 0 5px #29d;
- opacity: 1.0;
- transform: rotate(3deg) translate(0px, -4px);
- }
- #nprogress .spinner {
- display: none;
- position: fixed;
- z-index: 1031;
- top: 15px;
- right: 15px;
- }
- #nprogress .spinner-icon {
- width: 18px;
- height: 18px;
- box-sizing: border-box;
- border: solid 2px transparent;
- border-top-color: #29d;
- border-left-color: #29d;
- border-radius: 50%;
- animation: nprogress-spinner 400ms linear infinite;
- }
- @keyframes nprogress-spinner {
- 0% { transform: rotate(0deg); }
- 100% { transform: rotate(360deg); }
- }
- `
- // 在运行时动态添加样式
- const style = document.createElement('style')
- style.type = 'text/css'
- style.innerHTML = styleContent
- document.head.appendChild(style)
- // 配置 NProgress
- NProgress.configure({
- showSpinner: false,
- minimum: 0.3,
- easing: 'ease',
- speed: 500,
- trickle: true,
- trickleSpeed: 200,
- })
- export default NProgress
|