Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/04/2014, 15:09
Avatar de patilanz
patilanz
 
Fecha de Ingreso: enero-2012
Mensajes: 880
Antigüedad: 12 años, 10 meses
Puntos: 29
Respuesta: Drag and drop burbujeo o no?

Hola
jgdev13 los divs están organizados de la misma manera solo que seleccionas el contenido pero no el texto por lo que el resultado seria el mismo o no?
IsaBelM tu codigo me parecio muy interesante pero me puedes explicar esta function ?

Código Javascript:
Ver original
  1. function cssComputado(obj, styleProp) {
  2.  
  3. if (obj == null) { return 0; }
  4.  
  5. if (window.getComputedStyle) {
  6.  
  7. var valor = window.getComputedStyle(obj, null)[styleProp];
  8.  
  9. } else if (obj.currentStyle) {
  10.  
  11. var valor = (/(em)/.test(obj.currentStyle[styleProp])) ? parseInt(obj.currentStyle[styleProp], 10) * 16 : obj.currentStyle[styleProp];
  12. }
  13.  
  14. return valor;
  15. }

Y una observación al arrastrar el div en el otro lo detecta solo cuando el ratón también este dentro dentro en cambio no. Esto daría problemas si se le agrega mas width o height

Gracias