EasyUI es un marco HTML5 para usar componentes de interfaz de usuario basados en tecnologías jQuery, React, Angular y Vue. Ayuda a crear funciones para aplicaciones móviles y web interactivas, lo que ahorra mucho tiempo a los desarrolladores.
En este artículo, aprenderemos cómo diseñar un botón interruptor usando jQuery EasyUI. Switchbutton tiene dos partes: ‘on’ ‘off’. El usuario puede hacer clic o tocar para alternar el interruptor
Descargas para EasyUI para jQuery:
https://www.jeasyui.com/download/index.php
Sintaxis:
<div class="switchbutton"> </div>
Propiedades:
- ancho: el ancho del botón interruptor
- altura: La altura del botón interruptor
- handleWidth: el ancho del controlador central del botón del interruptor
- marcada: Define si el botón está marcado
- disabled: Define si deshabilitar el botón
- readonly: Define si el botón es de solo lectura
- invertido: establezca en verdadero el valor de onText y el valor de offText cambiará sus posiciones
- onText: El valor de texto del lado izquierdo.
- offText: El valor de texto del lado derecho
- handleText: el valor de texto del identificador central.
- valor: el valor predeterminado vinculado al botón.
Eventos:
- onChange: se dispara cuando se cambia el valor marcado
Métodos:
- opciones: Devuelve el objeto de opciones
- redimensionar: cambiar el tamaño del botón interruptor
- deshabilitar: deshabilitar el botón interruptor
- habilitar: habilitar el botón de interruptor
- readonly: habilitar/deshabilitar el modo de solo lectura
- comprobar: compruebe el botón del interruptor
- desmarcar: desmarque el botón de cambio
- clear: borra el valor ‘marcado’ del switchbutton
- restablecer: restablece el valor ‘marcado’ del botón del interruptor
- setValue: establece el valor del botón del interruptor
Enlace CDN: Primero, agregue los scripts jQuery Easy UI necesarios para su proyecto.
<script type=”text/javascript” src=”jquery.min.js”>
</script>
<!–Bibliotecas jQuery de EasyUI –>
<script type=”text/javascript” src=”jquery.easyui.min. js”>
</script>
<!–Biblioteca jQuery de EasyUI Mobile –>
<script type=”text/javascript” src=”jquery.easyui.mobile.js”>
</script>
Ejemplo 1:
HTML
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- EasyUI specific stylesheets--> <link rel="stylesheet" type="text/css" href="themes/metro/easyui.css"> <link rel="stylesheet" type="text/css" href="themes/mobile.css"> <link rel="stylesheet" type="text/css" href="themes/icon.css"> <!--jQuery library --> <script type="text/javascript" src="jquery.min.js"> </script> <!--jQuery libraries of EasyUI --> <script type="text/javascript" src="jquery.easyui.min.js"> </script> <!--jQuery library of EasyUI Mobile --> <script type="text/javascript" src="jquery.easyui.mobile.js"> </script> <script type="text/javascript"> $(document).ready(function (){ $('#gfg').switchbutton({ disabled: true }); }); </script> </head> <body> <h1>GeeksforGeeks</h1> <h3>EasyUI jQuery switchbutton widget</h3> <input id="gfg" class="easyui-switchbutton"> </body> </html>
Producción:
Referencia: http://www.jeasyui.com/documentation/