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 path() se usa para crear un elemento de ruta para el widget jqxDraw especificado.
Sintaxis:
var path = Instance.path(path, attributes);
Parámetros: Este método acepta dos parámetros que se ilustran a continuación:
- ruta: este parámetro de ruta acepta algunos comandos de línea como «Mover a: M x,y», «Línea a: L x,y», «Curva cúbica: C x1,y1,x2,y2,x,y» y «Cerrar camino: Z”
- atributos: Este es el atributo especificado.
Valores devueltos: este método devuelve el objeto de ruta.
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 path() .
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 path() Method</h3> <div id="jqx_Draw" style="height:200px; width:700px;"> </div> <input type="button" id="Button" style="padding:5px 15px; margin-top:40px;" value="Create the path element"> <div id="log"></div> <script type="text/javascript"> $(document).ready(function () { $('#jqx_Draw').jqxDraw({ renderEngine: 'HTML5' }); var Instance = $('#jqx_Draw').jqxDraw('getInstance'); $("#Button").click(function () { // Creating a path with Supported // line commands // MoveTo: M x,y (Here, M 150, 150) // LineTo: L x,y (Here, L 250, 270) // Cubic curve: C x1,y1,x2,y2,x,y // (Here, C 250, 220 280, 270 250, 250) // Close path: Z // Parameter for filling with green color var path = Instance.path( "M 150, 150 L 250, 270 C 250, 220 280, 270 250, 250", { fill: 'green' }); Instance.refresh(); }); }); </script> </center> </body> </html>
Producción:
Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxdraw/jquery-draw-api.htm
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