css+js实现算盘型阿巴时钟Abaclock显示时间代码
代码语言:html
所属分类:其他
代码描述:css+js实现算盘型阿巴时钟Abaclock显示时间代码
代码标签: css js 算盘 型 阿巴 时钟 Abaclock 显示 时间 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html> <html lang="en" > <head> <meta charset="UTF-8"> <style> .abaclock{ --max-beads: 10; --min-beads-gap: 4; container-type: inline-size; display: grid; width: min(30rem, 100%); margin-inline: auto; position: relative; --grad: hsl(0 0% 100% / .25), hsl(0 0% 100% / .5) 25%, hsl(0 0% 0% / .5) 90%; &::before, &::after{ content: ""; position: absolute; width: 5cqi; background-color: orange; background-image: linear-gradient(90deg, var(--grad)); height: 100%; top: 0; border-radius: 5cqi 5cqi 0 0.........完整代码请登录后点击上方下载按钮下载查看
网友评论0