day44-Custom Range Slider(自定义范围滑块)

50 天学习 50 个项目 - HTMLCSS and JavaScript

day44-Custom Range Slider(自定义范围滑块)

效果

day44-Custom Range Slider(自定义范围滑块)_第1张图片

day44-Custom Range Slider(自定义范围滑块)_第2张图片

index.html

DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Custom Range Slidertitle>
    <link rel="stylesheet" href="style.css" />
head>

<body>
    <h2>自定义范围滑块h2>
    
    <div class="range-container">
        <input type="range" id="range" min="0" max="100">
        <label for="range">50label>
    div>

    <script src="script.js">script>
body>

html>

style.css

@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Lato', sans-serif;
    /* 子元素竖直居中 */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
}

/* 标题 */
h2 {
    position: absolute;
    top: 10px;
}

/* 滑块容器 */
.range-container {
    position: relative;
}

/* 滑块 */
input[type='range'] {
    width: 300px;
    margin: 18px 0;
    /* 不要显示默认的滑动条外观。 */
    appearance: none;
    outline: none;
}

/* 一个input元素的type属性为range的滑动条(range input)后面紧跟的label元素应用样式。 */
input[type='range']+label {
    background-color: #fff;
    /* 子绝父相 */
    position: absolute;
    top: -25px;
    left: 110px;
    width: 80px;
    padding: 5px 0;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

/* Chrome & Safari 浏览器下滑动条的样式*/
/* 选择滑动条的“轨道”部分。 */
input[type='range']::-webkit-slider-runnable-track {
    background: purple;
    border-radius: 4px;
    width: 100%;
    height: 10px;
    cursor: pointer;
}

/* 用于修改滑动条(input元素的type属性为range)滑块(thumb) */
input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 24px;
    width: 24px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid purple;
    margin-top: -7px;
    cursor: pointer;
}

/* Firefox */
input[type='range']::-moz-range-track {
    background: purple;
    border-radius: 4px;
    width: 100%;
    height: 13px;
    cursor: pointer;
}

input[type='range']::-moz-range-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid purple;
    margin-top: -7px;
    cursor: pointer;
}

/* IE */
input[type='range']::-ms-track {
    background: purple;
    border-radius: 4px;
    width: 100%;
    height: 13px;
    cursor: pointer;
}

input[type='range']::-ms-thumb {
    appearance: none;
    height: 24px;
    width: 24px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid purple;
    margin-top: -7px;
    cursor: pointer;
}

script.js

// 重点 flex position   offsetWidth
// 滑块位于label的正下方
// 1.获取元素节点
const range = document.getElementById('range')//滑动条
// 2.绑定输入事件
range.addEventListener('input', (e) => {
    const value = +e.target.value//+号将其变为数字型
    const label = e.target.nextElementSibling//就是label标签,展示数据

    const num_width = e.target.offsetWidth
    // console.log(num_width)//300
    const num_label_width = label.offsetWidth
    // console.log(num_label_width)//80

    const max = +e.target.max//100
    const min = +e.target.min//0
    // (num_width / max) 一个比例
    // value * (num_width / max) 用于控制label的滑动
    // 接下来的用于控制 滑块位于label的正下方
    // num_label_width / 2  滑块位于label的下方一半
    // scale(value, min, max, 12, -12) 用于控制是否在label的正下方
    // 12是滑块的宽度的一半
    let left = value * (num_width / max) - num_label_width / 2 + scale(value, min, max, 12, -12)

    label.style.left = `${left}px`

    label.innerHTML = value
})
// 将一个范围内的数映射到另一个范围内的数
// https://stackoverflow.com/questions/10756313/javascript-jquery-map-a-range-of-numbers-to-another-range-of-numbers
const scale = (num, in_min, in_max, out_min, out_max) => {
    return (num - in_min) / (in_max - in_min) * (out_max - out_min) + out_min;
}

你可能感兴趣的:(50天50个小demo前端,html5,css3,javascript,前端,滑动条,滑块)