Advertisement
Guest User

Untitled

a guest
Apr 30th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //*************************************************************************
  2. // Drag Drop
  3. //*************************************************************************
  4. $('.drop-container div').droppable({
  5.     accept: ".small-lights",
  6.     classes: {
  7.         "ui-droppable-active": "ui-state-highlight"
  8.     },
  9.   drop: function(event, ui) {
  10.     var $this = $(this);
  11.      
  12.     if($(this).hasClass('large-elements')){
  13.         ui.draggable.find('img').attr('src').replace('small', 'large');
  14.     }
  15.      
  16.     ui.draggable.position({
  17.       my: "center",
  18.       at: "center",
  19.       of: $this,
  20.       using: function(pos) {
  21.         $(this).animate(pos, 200, "linear");
  22.         $(this).css('padding', '0px');
  23.         //$(this).find('img').attr('src').replace('small', 'large');
  24.       }
  25.     });
  26.   }
  27. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement