Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <main>
  <div class="bounds"></div>  
  <div id="pool" class="zone">
    <h3>Pool</h3>
    <div class="tile"></div>
    <div class="tile"></div>
    <div class="tile"></div>
    <div class="tile"></div>
    <div class="tile"></div>
    <div class="tile"></div>
    <div class="tile"></div>
  </div>
  <div id="drop" class="zone">
    <h3>Drop Zone</h3>
  </div>  
</main>
              
            
!

CSS

              
                
body {
  overflow: hidden;
  background-color: #eee;
}

* {
  box-sizing: border-box;
}

.bounds{
  position: absolute;
  top: 0;
  left: 0;
  margin: 10px;
  width: calc(100% - 20px) ;
  height: calc(100% - 20px);
}

main {  
  height: 100vh;
  padding: 10px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  -webkit-user-select: none;  
  -moz-user-select: none;     
  -ms-user-select: none;      
  user-select: none;  
}

.zone {
  position: relative;
  background-color: #fafafa;
  min-width: 300px;
  height: 100%;  
  border: 1px solid #aaa;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.tile {
  position: absolute;
  width: 200px;
  height: 75px;
  top: 0;
  left: 0;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.5);
}

h3 {
  color: #555;  
  position: relative;
  z-index: 9999999;
  pointer-events: none;
  text-shadow: 
     1px  1px 0px #fafafa, 
    -1px -1px 0px #fafafa, 
     1px -1px 0px #fafafa, 
    -1px  1px 0px #fafafa;
}



              
            
!

JS

              
                
var tiles  = $(".tile");
var pool   = $("#pool");
var drop   = $("#drop");

var height = tiles.outerHeight();
var margin = 50;
var gutter = 15;

tiles.each(function(i, tile) {
  
  // Setup tiles with some data
  tile = $(tile);
  tile.data({ index: i, zone: pool });
  
  TweenLite.set(tile, { 
    x: margin,
    y: margin + i * gutter + (i * height),
    backgroundColor: Math.random() * 0xE8D4CD
  });
});

// Make tiles draggable
Draggable.create(tiles, {
  bounds      : ".bounds",  
  onDrag      : onDrag,
  onDragEnd   : onDragEnd,
  onDragStart : onDragStart,
  onPress     : onPress,
  onRelease   : onRelease
});

function onDrag(event) {
  
  var tile = $(this.target);
  var zone = getZone(tile);
      
  // Tile is not in the zone it started from
  if (zone && zone !== tile.data("zone")) {
    
    // Stop the draggable so the position doesn't
    // get messed up when appeneding tile to new zone
    this.endDrag(event);
    changeZone(tile, zone); 
    this.startDrag(event);
  }
  
  // Reorder tiles. True parameter tells it to ignore 
  // tiles that are being dragged
  if (!zone) reorderTiles(true);
  if (hitTest(tile)) reorderTiles();
}

function onDragStart() {  
  $(this.target).addClass("dragging");
}

function onDragEnd() {
  
  var tile = $(this.target);
  var zone = getZone(tile);
    
  if (zone && zone !== tile.data("zone")) {
    changeZone(tile, zone);
  } 
    
  $(this.target).removeClass("dragging");
  hitTest(this.target);
  reorderTiles();
}

function onPress() {
  TweenLite.to(this.target, 0.3, { opacity: 0.75, scale: 0.9 });
}

function onRelease() {
  hitTest(this.target);
  reorderTiles();
  TweenLite.to(this.target, 0.3, { opacity: 1, scale: 1 });
}

function changeZone(tile, zone) {
   
  // Change tile's data for zone
  tile.data("zone", zone);
  
  // Find position of tile and zone
  var rect1 = tile[0].getBoundingClientRect();
  var rect2 = zone[0].getBoundingClientRect();
    
  zone.append(tile);
  
  // Update tile with new coords
  TweenLite.set(tile, {
    x: rect1.left - rect2.left,
    y: rect1.top  - rect2.top
  });
}

function getZone(tile) {
  
  // Returns the zone the tile is in
  var zone = Draggable.hitTest(tile, pool) 
    ? pool : Draggable.hitTest(tile, drop)
    ? drop : null;
  return zone;
}

function hitTest(tile) {
  
  var target;
  
  // Hit test tiles that aren't moving or being dragged
  $(".tile:not(.dragging, .moving)").each(function(i, element) {
    
    if (Draggable.hitTest(tile, element)) {
      target = element;
      return false; 
    }
  });
  
  if (target) changePosition(tile, target); 
  return target;
}

function reorderTiles(dragging) {
    
  var query = dragging ? ".tile:not(.dragging)" : ".tile";
  pool.children(query).each(moveTile);
  drop.children(query).each(moveTile);
}

function moveTile(index, tile, tween) {
  
  tile = $(tile);
  tile.data("index", index);  
      
  if (tile.hasClass("dragging")) return;
  tile.addClass("moving");
  
  TweenLite.to(tile, 0.25, {
    x: margin,
    y: margin + index * gutter + (index * height),
    onComplete: function() {
      tile.removeClass("moving");
    }
  });
}

function changePosition(tile1, tile2) {
  
  tile1 = $(tile1);
  tile2 = $(tile2);
  
  // Changes tiles position on the DOM which is used to 
  // index and find the position to move to
  tile1.data("index") > tile2.data("index") 
    ? tile1.insertBefore(tile2)
    : tile1.insertAfter(tile2); 
}















              
            
!
999px

Console