<!DOCTYPE html>
<html>

  <head>
    <base href="." />
    <title>angular2 playground</title>
    <link rel="stylesheet" href="style.css" />
    <script src="https://unpkg.com/zone.js/dist/zone.js"></script>
    <script src="https://unpkg.com/zone.js/dist/long-stack-trace-zone.js"></script>
    <script src="https://unpkg.com/reflect-metadata@0.1.3/Reflect.js"></script>
    <script src="https://unpkg.com/systemjs@0.19.31/dist/system.js"></script>
    <script src="config.js"></script>
    <script>
    System.import('app')
      .catch(console.error.bind(console));
  </script>
  </head>

  <body>
    <my-app>
    loading...
  </my-app>
  </body>

</html>
/* Styles go here */

.row {clear: both}


  .person {
    display: block;
    float: left;
    position: relative;
    height: 100px;
    width: 100px;
    background: #FFB4EC;
    border-radius: 50%;  
    text-align: center;
    
  }
### drag and drop demo 

with Angular2 ng2-dnd 
System.config({
  //use typescript for compilation
  transpiler: 'typescript',
  //typescript compiler options
  typescriptOptions: {
    emitDecoratorMetadata: true
  },
  paths: {
    'npm:': 'https://unpkg.com/'
  },
  //map tells the System loader where to look for things
  map: {
    
    'app': './src',
    
    '@angular/core': 'npm:@angular/core/bundles/core.umd.js',
    '@angular/common': 'npm:@angular/common/bundles/common.umd.js',
    '@angular/compiler': 'npm:@angular/compiler/bundles/compiler.umd.js',
    '@angular/platform-browser': 'npm:@angular/platform-browser/bundles/platform-browser.umd.js',
    '@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js',
    '@angular/http': 'npm:@angular/http/bundles/http.umd.js',
    '@angular/router': 'npm:@angular/router/bundles/router.umd.js',
    '@angular/forms': 'npm:@angular/forms/bundles/forms.umd.js',
    
    '@angular/core/testing': 'npm:@angular/core/bundles/core-testing.umd.js',
    '@angular/common/testing': 'npm:@angular/common/bundles/common-testing.umd.js',
    '@angular/compiler/testing': 'npm:@angular/compiler/bundles/compiler-testing.umd.js',
    '@angular/platform-browser/testing': 'npm:@angular/platform-browser/bundles/platform-browser-testing.umd.js',
    '@angular/platform-browser-dynamic/testing': 'npm:@angular/platform-browser-dynamic/bundles/platform-browser-dynamic-testing.umd.js',
    '@angular/http/testing': 'npm:@angular/http/bundles/http-testing.umd.js',
    '@angular/router/testing': 'npm:@angular/router/bundles/router-testing.umd.js',
    
    'rxjs': 'npm:rxjs',
    'typescript': 'npm:typescript@2.0.2/lib/typescript.js',
        'ng2-dnd': 'node_modules/ng2-dnd'
    
  },
  //packages defines our app package
  packages: {
    app: {
      main: './main.ts',
      defaultExtension: 'ts'
    },
    rxjs: {
      defaultExtension: 'js'
    },
        'ng2-dnd':  { main: 'index.js',  defaultExtension: 'js' },
    
  }
});
//main entry point
import {platformBrowserDynamic} from '@angular/platform-browser-dynamic';
import {AppModule} from './app';

platformBrowserDynamic().bootstrapModule(AppModule)
//our root app component
import {Component, NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'

import { DndModule } from 'ng2-dnd';

@Component({
  selector: 'my-app',
  templateUrl: 'src/app.html',
})
export class App {

  items: number[];
  droppedValue: number;

  constructor() {
    this.items = [1,2,3,4];
  }

  droppedPerson(event) {
    console.log(event);
    this.droppedValue = event.dragData;
  }
}

@NgModule({
  imports: [ BrowserModule, DndModule.forRoot() ],
  exports: [DndModule],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}
// ng2-dnd styles
.dnd-drag-start {
    transform:scale(0.8);
    opacity:0.7;
    border: 2px dashed #000;
}

.dnd-drag-enter {
    opacity:0.7;
    border: 2px dashed #000;
}

.dnd-drag-over {
    border: 2px dashed #000;
}

.dnd-sortable-drag {
  transform:scale(0.9);
  opacity:0.7;
  border: 1px dashed #000;
}

  <div class="row">

    <div
      class="person"
      *ngFor='let item of items'
      dnd-draggable
      [dragEnabled]="true"
      [dragData]="item"
      >
      <p>{{item}}</p>
    </div>

  </div>


  <div class="row">

      <div
        dnd-droppable
        (onDropSuccess)="droppedPerson($event)"
        >
        <div class="person">
          {{droppedValue}}
        </div>
      </div>

  </div>