css美化range实现飞机飞行滑竿滑块取值器代码
代码语言:html
所属分类:拖放
代码描述:css美化range实现飞机飞行滑竿滑块取值器代码
代码标签: css 美化 range 飞机 飞行 滑竿 滑块 取值器 代码
下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<style>
body {
min-height: 100vh;
margin: 0;
display: grid;
place-items: center;
background: #c2e5f9;
}
.flight-component {
--w: min(700px, 90vw);
width: var(--w);
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.5em;
font-family: Helvetica, Arial, sans-serif;
font-weight: 200;
font-size: 1.25rem;
}
/*
Didn't nest this one, in case I wanted to use the input by itself
without the div/span structure (in that case: add width!!)
*/
.flight-component input,
input.flight {
--bg: #6c6c84;
--scale: clamp(1, calc(1 + 0.5 * sin(pi * var(--val) / 100)), 2);
--shadow: clamp(0.15em, calc(1em * sin(pi * var(--val) / 100)), 1em);
--opacity: clamp(0.2, calc(1 - sin(pi * var(--val) / 100)), 0.4);
--color: rgb(0 0 0 / var(--opacity));
--primary: #f0f4fc;
--secondary: #b55;
--val: 0;
--height: 3em;
appearance: none;
container-type: inline-size;
flex: 1;
height: var(--height);
border: none; /* Firefox adds a default border */
border-radius: 10em;
position: relative;
background:
radial-gradient(circle at 0.35em 50%, var(--bg) 0.35em, #0000 0) no-repeat,
radial-gradient(circle at calc(100% - 0.35em) 50%, var(--bg) 0.35em, #0000 0) no-repeat,
linear-gradient(#0000 45%, var(--bg) 0 55%, #0000 0) 50% 50% / 99% 100%,
#f000;
border: 0;
/*
the ::before and ::after won't work on Firefox for input r.........完整代码请登录后点击上方下载按钮下载查看
















网友评论0