<!DOCTYPE html>
<html>

  <head>
    <base href="." />
    <title>angular2 playground</title>
    <link rel="stylesheet" href="style.css" />
    <script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
    <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>
  
    <div style="position: absolute; bottom: 10px; left: 10px;">
      <a style="text-decoration: none; color: #000000;" href="https://github.com/joejordanbrown" target="_blank">GitHub</a>
    </div>
    
    <div style="position: absolute; bottom: 10px; right: 10px;">
      <a style="text-decoration: none; color: #000000;" href="https://uixd.co.uk" target="_blank">Created by UIXD</a>
    </div>
  </body>

</html>
/* Styles go here */
html, body {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.page {
  float: left;
  width: 100vw;
  height: 100vh;
}

.docScroller {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  scroll-snap-points-y: repeat(100%);
  scroll-snap-type: mandatory;
  scroll-snap-destination: 100% 0%;
  overflow-x: hidden !important;
}

.inside {
  background: yellow;
  opacity: 0.3;
  width: 80vw;
  margin: 10vh 0 0 10vw;
  height: 80vh;
}

.one {
  background: blue;
}
.two {
  background: purple;
}
.three {
  background: red;
}
.four {
  background: orange;
}
### Angular Starter Plunker - Typescript
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',
    
    'angular2-drag-scroll': 'npm:angular2-drag-scroll@1.2.6/src/angular2-drag-scroll.js',
    
    'rxjs': 'npm:rxjs',
    'typescript': 'npm:typescript@2.0.2/lib/typescript.js'
  },
  //packages defines our app package
  packages: {
    app: {
      main: './main.ts',
      defaultExtension: 'ts'
    },
    rxjs: {
      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 { DragScrollModule } from 'angular2-drag-scroll';

@Component({
  selector: 'my-app',
  template: `
  <button style="position: absolute; top: 20px; left: 20px; z-index: 999;" (click)="dragScroll = !dragScroll">Toggle Drag scroll: {{dragScroll}}</button>
  
  <button style="position: absolute; top: 20px; right: 30px; z-index: 999;" (click)="scroll($event)">JavaScript Scroll</button>
  
<div class="docScroller" *ngIf="!dragScroll">
    <div class="page one">
      <div class="inside">
      </div>
    </div>
    <div class="page two">
      <div class="inside">
      </div>
    </div>
    <div class="page three">
      <div class="inside">
      </div>
    </div>
    <div class="page four">
      <div class="inside">
      </div>
    </div>
</div>
  
<div class="docScroller" *ngIf="dragScroll" drag-scroll>
    <div class="page one">
      <div class="inside">
      </div>
    </div>
    <div class="page two">
      <div class="inside">
      </div>
    </div>
    <div class="page three">
      <div class="inside">
      </div>
    </div>
    <div class="page four">
      <div class="inside">
      </div>
    </div>
</div>
  `,
})
export class App {
  name:string;
  dragScroll = false;
  constructor() {
    this.name = 'Angular2'
  }
  
  scroll() {
    document.getElementsByClassName('docScroller')[0].scrollTop = 500;
  }
}

@NgModule({
  imports: [ BrowserModule, DragScrollModule ],
  declarations: [ App ],
  bootstrap: [ App ]
})
export class AppModule {}