css美化range取值器成手机信号强度改变值效果代码

代码语言:html

所属分类:表单美化

代码描述:css美化range取值器成手机信号强度改变值效果代码

代码标签: css 美化 range 取值器 手机 信号 强度 改变

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en" >

<head>
  <meta charset="UTF-8">
  

  
  
  
<style>
input[type=range] {
  --s: 50px; /* the size of the bar (including the gap) */
  --g: 30%;  /* the gap (percentage of the above size) */
  
  --_c: #D9CEB2 50%,#3FB8AF 0; /* the colors (don't touch the percentage!) */
  --_n: attr(max type(<integer>)); /* update max to control the number of bars */
  aspect-ratio: 3/2; /* you can update this as well */
  width: calc(var(--_n)*var(--s));
  padding-inline: calc(var(--s)/2);
  box-sizing: border-box;
  mask:
    linear-gradient(90deg,#0000 calc(var(--g)/2),#000 0 calc(100% - v.........完整代码请登录后点击上方下载按钮下载查看

网友评论0