gpt4 book ai didi

javascript - 带有边框/周边的按钮作为加载器?

转载 作者:行者123 更新时间:2023-11-30 19:43:58 25 4
gpt4 key购买 nike

撇开实际的网络集成方面不谈,什么是最好的 css/javascript 技术来创建一个按钮,其周边/边框是加载器,如下图:

enter image description here

最佳答案

这是你要找的吗?

.rect {
fill:green;
stroke-width:3;
stroke:yellow;
border-radius: 10%;
stroke-dashoffset: -50px;
animation: loader-animation 4s linear;
}

@keyframes loader-animation {
0% {
stroke-dasharray: 0, 400px;
}
100% {
stroke-dasharray: 400px, 0;
}
}
<svg>
<rect class="rect" x="10" y="10" rx="5" width="100" height="100"/>
</svg>

关于javascript - 带有边框/周边的按钮作为加载器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55109901/

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