-->

domingo, 12 de mayo de 2019

61. Uso de DOBLE Flip Toggle Switch (JQuery Mobile)

Cómo hacer un control deslizante con dos asas, lo que permite a los usuarios especificar un valor mínimo y máximo en un rango.

 <div data-role="rangeslider">

Ejemplo
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>

</head>
<body>
 <div data-role="page">
  <div data-role="header">
   <h1>Range Slider</h1>
  </div>

  <div data-role="main" class="ui-content">
   <form method="post" action="demoform.asp">
    <div data-role="rangeslider">
     <label for="price-min">Price:</label>
     <input type="range" name="price-min" id="price-min" value="200" min="0" max="1000">
     <label for="price-max">Price:</label>
     <input type="range" name="price-max" id="price-max" value="800" min="0" max="1000">
    </div>
    <input type="submit" data-inline="true" value="Submit">
    <p>El control deslizante de rango puede ser útil para que los usuarios seleccionen un rango de precios específico al explorar productos.</p>
   </form>
  </div>
 </div>
</body>
</html>

Resultado:


No hay comentarios:

Publicar un comentario