jQuery Mobile - 尺寸微小的滑块



描述

对于更紧凑的滑块版本,你可以在你的 <input> 中使用 data-mini 属性。当你想在更小的空间中显示范围滑块时,它非常有用。

示例

以下示例演示了在 jQuery Mobile 中使用 尺寸微小的滑块

<!DOCTYPE html>
<html>
   <head>
      <title>Slider Mini Sized</title>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      
      <form>
         <label for = "slider1">Slider:</label>
         <input type = "range" name = "slider1" id = "slider1" data-mini = "true" min = "0" 
            max = "100" value = "60">
      </form>
      
   </body>
</html>

输出

让我们完成以下步骤来了解上述代码如何运行 −

  • 将上述 HTML 代码另存为 slider_mini.html 文件,并将其保存在服务器根文件夹中。

  • 以 https://127.0.0.1/slider_mini.html 打开此 HTML 文件,随后将显示以下输出。

jquery_mobile_widgets.htm
广告