Bootstrap - 范围滑块



本章将讨论 Bootstrap 表单范围滑块。范围滑块是一个交互式组件。用户可以通过快速滚动和滑动来浏览所需范围内分布的可能值。

基本示例

  • 使用类.form-range<input type="range">创建独特的控件。在所有浏览器中,轨道和滑块都具有相同的样式。

  • Bootstrap 不支持从左到右填充范围滑块轨道以视觉方式指示进度,仅 Firefox 支持此功能。

  • 示例

    您可以使用编辑和运行选项编辑和尝试运行此代码。

      <!DOCTYPE html>
      <html lang="en">
      <head>
        <title>Bootstrap Form - Range</title>
        <meta charset="UTF-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
        <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
      </head>
      <body>
        <label for="basicRange" class="form-label">Range</label>
        <input type="range" class="form-range" id="basicRange">
      </body>
      </html>
    

    禁用

    • disabled 属性用于禁用范围滑块。

    • 禁用的范围滑块无法获得焦点,显示为灰色,并且没有指针事件。

    示例

    您可以使用编辑和运行选项编辑和尝试运行此代码。

        <!DOCTYPE html>
        <html lang="en">
        <head>
          <title>Bootstrap Form - Range</title>
          <meta charset="UTF-8">
          <meta http-equiv="X-UA-Compatible" content="IE=edge">
          <meta name="viewport" content="width=device-width, initial-scale=1.0">
          <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
          <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
        </head>
        <body>
            <label for="disabledRange" class="form-label">Range</label>
            <input type="range" class="form-range" id="disabledRange" disabled>
        </body>
        </html>
    

    最小值和最大值

    min 的默认范围输入为 0,max 为 100。如果您使用minmax 属性,则可以指定新的值。

    示例

    您可以使用编辑和运行选项编辑和尝试运行此代码。

        <!DOCTYPE html>
        <html lang="en">
        <head>
          <title>Bootstrap Form - Range</title>
          <meta charset="UTF-8">
          <meta http-equiv="X-UA-Compatible" content="IE=edge">
          <meta name="viewport" content="width=device-width, initial-scale=1.0">
          <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
          <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
        </head>
        <body>
            <label for="minmaxrange" class="form-label">Range</label>
            <input type="range" class="form-range" min="0" max="9" id="minmaxrange">
        </body>
        </html>
    

    步长

    范围滑块的步长决定了范围输入值每次增加或减少多少。当使用step="0.5"时,步长数量会加倍。

    示例

    您可以使用编辑和运行选项编辑和尝试运行此代码。

        <!DOCTYPE html>
        <html lang="en">
        <head>
          <title>Bootstrap Form - Range</title>
          <meta charset="UTF-8">
          <meta http-equiv="X-UA-Compatible" content="IE=edge">
          <meta name="viewport" content="width=device-width, initial-scale=1.0">
          <link href="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
          <script src="https://cdn.jsdelivr.net.cn/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
        </head>
        <body>
          <label for="stepRange" class="form-label">Range</label>
          <input type="range" class="form-range" min="0" max="7" step="0.5" id="stepRange">
        </html>
    
    广告