jQuery UI consta de widgets GUI, efectos visuales y temas implementados mediante HTML, CSS y jQuery. jQuery UI es excelente para crear interfaces de interfaz de usuario para las páginas web. La opción de íconos giratorios de jQuery UI se usa para agregar el ícono al botón giratorio. Su valor predeterminado es { abajo: “ui-icon-triangle-1-s”, arriba: “ui-icon-triangle-1-n” }.
Sintaxis:
$( ".selector" ).spinner({ icons: { down: "custom-down-icon", up: "custom-up-icon" } });
Enlace CDN: Primero, agregue los scripts jQuery UI necesarios para su proyecto.
<enlace rel=”hoja de estilo” href=”//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”//code.jquery.com/jquery- 1.12.4.js”></script>
<script src=”//code.jquery.com/ui/1.12.1/jquery-ui.js”></script>
Ejemplo:
HTML
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <link rel="stylesheet" href= "//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"> </script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"> </script> <script> $(function () { $("#gfg").spinner({ icons: { down: "ui-icon-circle-triangle-s", up: "ui-icon-circle-triangle-n" } }); }); </script> </head> <body> <h1 style="color: green;">GeeksforGeeks</h1> <h2>jQuery UI spinner icons option</h2> <div id="geeks"> <input type="text" id="gfg" value="45" /> </div> </body> </html>
Producción:
Referencia: https://api.jqueryui.com/spinner/#option-icons