1Cargando...
1Cargando...
23456789101112131415161718192021222324252627282930this.style.opacity = '0.4'; // this / e.target is the source node.}/////////////////////////////////////////////////////////////////////////////////////////////////////////////////function handleDragStart(e) {this.style.opacity = '0.4'; // this / e.target is the source node.}function handleDragOver(e) {if (e.preventDefault) {e.preventDefault(); // Necessary. Allows us to drop.}e.dataTransfer.dropEffect = 'move'; // See the section on the DataTransfer object.return false;}function handleDragEnter(e) {// this / e.target is the current hover target.this.addClassName('over');}function handleDragLeave(e) {this.removeClassName('over'); // this / e.target is previous target element.}
Enlace
El enlace para compartir es:
Guardar
Guardando...