Materialize - Range
示例
以下示例演示了 Materialize Range 控件。
materialize_range.htm
<html> <head> <title>The Materialize Range Example</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/css/materialize.min.css"> <script type = "text/javascript" src = "https://code.jquery.com/jquery-2.1.1.min.js"></script> <script src = "https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.3/js/materialize.min.js"> </script> </head> <body class = "container"> <div class = "row"> <form class = "col s12"> <div class = "row"> <label>Materialize Range</label> <p class = "range-field"> <input type = "range" id = "test" min = "0" max = "100" /> </p> </div> </form> </div> </body> </html>
结果
验证结果。