jQWidgets es un marco de JavaScript para crear aplicaciones basadas en web para PC y dispositivos móviles. Es un marco muy potente, optimizado, independiente de la plataforma y ampliamente compatible. jqxDraw es un pequeño complemento basado en jQuery que se usa para dibujar formas y textos usando VML, SVG y HTML5
El método on() se usa para agregar un controlador de eventos a un elemento del widget jqxDraw especificado.
Sintaxis:
Instance.on(Element, 'click', function () { // Getting the Y coordinate of the circle's center var Y_Coordinate = parseInt(Instance.getAttr(Element, 'cy')); // Moving the circle down with 15 pixels Instance.attr(Element, { cy: Y_Coordinate + 15 }); });
Parámetros: Este método acepta tres parámetros que se ilustran a continuación:
- Elemento: Este es el elemento especificado.
- clic: Este es el evento especificado.
- función: esta es la función especificada para agregar el controlador de eventos.
Valores devueltos: este método no devuelve ningún valor.
Archivos vinculados: descargue jQWidgets desde el enlace dado. En el archivo HTML, busque los archivos de script en la carpeta descargada.
<link rel=”hoja de estilo” href=”jqwidgets/styles/jqx.base.css” type=”text/css” />
<script type=”text/javascript” src=”scripts/jquery.js”></ script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxdraw.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqx-all.js”></script>
Ejemplo: El siguiente ejemplo ilustra el método jQWidgets jqxDraw on() .
HTML
<!DOCTYPE html> <html lang="en"> <head> <link rel="stylesheet" href= "jqwidgets/styles/jqx.base.css" type="text/css" /> <script type="text/javascript" src= "scripts/jquery-1.11.1.min.js"> </script> <script type="text/javascript" src= "jqwidgets/jqxcore.js"> </script> <script type="text/javascript" src= "jqwidgets/jqxdraw.js"> </script> <script type="text/javascript" src= "jqwidgets/jqx-all.js"> </script> </head> <body> <center> <h1 style="color:green;"> GeeksforGeeks </h1> <h3>jQWidgets jqxDraw on() Method</h3> <div id="jqx_Draw" style="height:200px; width:700px;"> </div> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $('#jqx_Draw').jqxDraw(); var Instance = $('#jqx_Draw').jqxDraw('getInstance'); // Creating a circle with cx of 130, cy of 50, // radius of 25 and parameters for filling the // circle with green color var Element = Instance.circle(130, 50, 25, { fill: 'green' }); Instance.on(Element, 'click', function () { // Getting the Y coordinate of the circle's center var Y_Coordinate = parseInt( Instance.getAttr(Element, 'cy')); // Moving the circle down with 15 pixels Instance.attr(Element, { cy: Y_Coordinate + 15 }); }); Instance.refresh(); }); </script> </center> </body> </html>
Producción:
Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdraw/jquery-draw-api.htm?search=
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA