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. jqxGauge representa un widget de calibre jQuery, es un indicador dentro de un rango de valores. Podemos usar indicadores para mostrar un valor en un rango de valores en la región de datos, hay 2 tipos de indicadores: RadialGauge y LinearGauge. En LinearGauge , el valor se representa linealmente de manera vertical a partir de algunos valores.
La propiedad animationDuration se usa para establecer o devolver la propiedad animationDuration, es decir, se usa para establecer la duración de la animación en la que cambiará el valor del indicador lineal. Acepta valor de tipo numérico y su valor por defecto es 1000.
Sintaxis:
Establezca la propiedad animationDuration.
$('Selector').jqxLinearGauge({ animationDuration : number });
Devuelve la propiedad animationDuration.
var anDur = $('Selector').jqxLinearGauge('animationDuration');
Archivos vinculados: descargue jQWidgets . 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-1.11.1.min .js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxcore.js”></script>
<script type=”text/javascript” src=”jqwidgets/jqxchart.js”> </script>
<script type=”text/javascript” src=”jqwidgets/jqxgauge.js”></script>
Ejemplo: El siguiente ejemplo ilustra la propiedad jqxLinearGauge animationDuration en jQWidgets.
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/jqxchart.js"></script> <script type="text/javascript" src="jqwidgets/jqxgauge.js"></script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h3>jQWidgets jqxLinearGauge animationDuration property</h3> <div id="gauge"></div> <hr> <button id = 'btn'>Animate</button> </center> <script type="text/javascript"> $(document).ready(function () { $("#gauge").jqxLinearGauge({ value: 0, animationDuration: 1200 }); }); $("#btn").click(function () { $('#gauge').jqxLinearGauge({ value: 30 }); }); </script> </body> </html>
Producción:
Referencia: https://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgauge/jquery-gauge-api.htm?search=