Esta opción de efecto de reversión de arrastrar y soltar de script.aculo.us se utiliza para volver a su posición definida cuando finaliza el arrastre. También especifica si se invocará la devolución de llamada de efecto de reversión cuando se detenga la operación de arrastre.
Sintaxis:
new Draggable('element', {reverteffect: 'effectFunction'});
Valores:
- reverteffect: Esta opción toma la función reverteffect.
Ejemplo:
HTML
<!DOCTYPE html> <html> <head> <script type="text/javascript" src="prototype.js"> </script> <script type="text/javascript" src="scriptaculous.js"> </script> <script type="text/javascript"> window.onload = function () { var img = 'gfg'; new Draggable('gfg', { revert: true, reverteffect: function () { new Effect.MoveBy('gfg', 100, 100); } }); } </script> </head> <body> <div> <h1 style="color: green"> GeeksforGeeks </h1> <p> A Computer Science Portal for Geeks </p> </div> <strong> script.aculo.us Drag & Drop reverteffect Option </strong> <p>Drag and leave the image</p> <img id="gfg" src="gfg.png"> </body> </html>
Producción:
Publicación traducida automáticamente
Artículo escrito por skyridetim y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA