jQuery UI es una tecnología basada en la web y consta de varios widgets GUI, efectos visuales y temas. Estas funciones se pueden implementar mediante la biblioteca JavaScript de jQuery . jQuery UI es la mejor herramienta para crear interfaces de interfaz de usuario para las páginas web. También se puede usar para crear aplicaciones web altamente interactivas o se puede usar para agregar widgets fácilmente.
En este artículo, usaremos la opción jQuery UI Sortable scrollSensitivity para definir qué tan cerca debe estar el mouse de un borde para comenzar a desplazarse.
Sintaxis:
$( ".selector" ).sortable({scrollSensitivity: 30});
-
Para configurar la opción scrollSensitivity:
$( ".selector" ).sortable( "option", "scrollSensitivity", 30 );
-
Para obtener la opción scrollSensitivity:
var scrollSensitivity = $( ".selector" ) .sortable( "option", "scrollSensitivity" );
Nota: El valor predeterminado de la opción scrollSenitivity es 10.
Enlace CDN: Primero, agregue los scripts de jQuery Mobile necesarios para su proyecto.
<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>
<enlace rel=”hoja de estilo” href=”https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css”>
Ejemplo: El programa a continuación ilustrará el uso de la opción scrollSensitivity de jQuery UI. En el programa a continuación, estableceremos la opción scrollSensitivity en 30 y el evento de inicio se activará y mostrará la opción scrollSensitivity actual.
HTML
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="stylesheet" href= "https://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> <title>jQuery UI Sortable scrollSensitivity option</title> <style> #sortableList { list-style-type: none; } .geeks { margin: 10px; background: lightgreen; padding: 10px; border: 1px solid green; font-size: 25px; } </style> <script> $(function () { $('#sortableList').sortable({ start: function (event, ui) { $("#sortedList").html ($("#sortedList").html() +"Start event triggered when scrollSensitivity is "+ $( "#sortableList" ).sortable( "option", "scrollSensitivity" )+"<br>"); }, scrollSensitivity:30 }); }); </script> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h4>jQuery UI Sortable scrollSensitivity option</h4> <ul id="sortableList"> <li id="Tutorials" class="geeks"> 1.Free Tutorials </li> <li id="Articles" class="geeks"> 2.Millions of articles </li> <li id="Webinars" class="geeks"> 3.Webinars by Industry Experts </li> <li id="Courses" class="geeks"> 4.Live, Online and Classroom Courses </li> </ul> <h2><span id='sortedList'></span></h2> </center> </body>
Producción:
Referencia: https://api.jqueryui.com/sortable/#option-scrollSensitivity
Publicación traducida automáticamente
Artículo escrito por harshsethi2000 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA