gpt4 book ai didi

jquery - 如何使用 html5 css 和 jquery 创建这个特殊的加载器?

转载 作者:太空宇宙 更新时间:2023-11-04 14:11:12 25 4
gpt4 key购买 nike

主要问题是百分比容器(小圆圈),相反我可以使用简单的饼图插件创建大圆圈...

有什么我可以遵循的想法吗??!

enter image description here

最佳答案

好吧,我已经从 here 中获取了动态饼图的代码(如果你喜欢馅饼,请给他的答案投票)...我已经为绿色百分比圆圈添加了我的,我使用 opacity: 0; 在加载时隐藏它并在 3 秒后使用animation-delay 属性,最后我添加了 animation-fill-mode 属性,这样你的百分比 div 就不会消失..

Demo

.percent {
-webkit-animation: show_percent 1s;
-moz-animation: show_percent 1s;
animation: show_percent 1s;
opacity: 0;
-moz-animation-delay: 3s;
-webkit-animation-delay: 3s;
animation-delay: 3s;

-moz-animation-fill-mode: forwards;
-webkit-animation-fill-mode: forwards;
animation-fill-mode: forwards;
height: 50px;
width: 50px;
background: #00FF43;
border-radius: 50%;
z-index: 50;
position: absolute;
bottom: 10px;
right: 10px;
}
@-moz-keyframes show_percent {
0% {
display: none;
}
100% {
display: block;
}
}

@-webkit-keyframes show_percent {
0% {
display: none;
}
100% {
display: block;
}
}

@keyframes show_percent {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

关于jquery - 如何使用 html5 css 和 jquery 创建这个特殊的加载器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20743765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com