Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[css] 第892天 使用纯CSS实现一个滚动进度条 #4491

Open
haizhilin2013 opened this issue Sep 23, 2021 · 1 comment
Open

[css] 第892天 使用纯CSS实现一个滚动进度条 #4491

haizhilin2013 opened this issue Sep 23, 2021 · 1 comment
Labels
css css

Comments

@haizhilin2013
Copy link
Collaborator

第892天 使用纯CSS实现一个滚动进度条

#2271

3+1官网

我也要出题

@haizhilin2013 haizhilin2013 added the css css label Sep 23, 2021
@smile921
Copy link

/* 设置蓝色进度条,进度条宽度8px ,假死目标元素是element */
.target-element {
background-image: linear-gradient(to right top, #9bb0f5 55%, #eee 45%);
background-repeat: no-repeat;
}
element::after {
content: "";
position: fixed;
top: 8px;
left: 0;
right: 0;
bottom: 0;
background: #fbf4f4;
z-index: -1;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
css css
Projects
None yet
Development

No branches or pull requests

2 participants