import { Component } from '@angular/core';
import { HomePage } from './home.page';
@Component({
template: `<ion-nav [root]="rootPage"></ion-nav>`
})
export class AppComponent {
rootPage = HomePage;
}
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { IonicApp, IonicModule } from 'ionic-angular';
import { IonicImageViewerModule } from 'ionic-img-viewer';
import { AppComponent } from './app.component';
import { HomePage } from './home.page';
@NgModule({
imports: [ BrowserModule, IonicModule.forRoot(AppComponent), IonicImageViewerModule ],
declarations: [ AppComponent, HomePage ],
entryComponents: [ HomePage ],
bootstrap: [ IonicApp ]
})
export class AppModule { }
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';
const platform = platformBrowserDynamic();
platform.bootstrapModule(AppModule);
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
<!DOCTYPE html>
<html>
<head>
<title>Ionic 2 QuickStart</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- 1. Load libraries -->
<!-- Polyfill(s) for older browsers -->
<script src="https://unpkg.com/core-js@2.4.1/client/shim.min.js"></script>
<script src="https://unpkg.com/zone.js@0.8.12?main=browser"></script>
<script src="https://unpkg.com/systemjs@0.19.40/dist/system.src.js"></script>
<!-- 2. Configure SystemJS -->
<script src="systemjs.config.js"></script>
<link href="https://unpkg.com/ionic-angular@3.4.0/css/ionic.css" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<!-- 3. Display the application -->
<body>
<ion-app>Loading the app...</ion-app>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
</body>
</html>
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
-->
### Ionic 2 Plunk
Basic Ionic 2 plunk based on the Angular QuickStart plunk.
/**
* PLUNKER VERSION
* (based on systemjs.config.js in angular.io)
* System configuration for Angular samples
* Adjust as necessary for your application needs.
*/
(function (global) {
System.config({
// DEMO ONLY! REAL CODE SHOULD NOT TRANSPILE IN THE BROWSER
transpiler: 'ts',
typescriptOptions: {
tsconfig: true
},
meta: {
'typescript': {
"exports": "ts"
}
},
paths: {
// paths serve as alias
'npm:': 'https://unpkg.com/'
},
// map tells the System loader where to look for things
map: {
// our app is within the app folder
app: 'app',
// angular bundles
'@angular/core': 'npm:@angular/core@4.2.2/bundles/core.umd.js',
'@angular/common': 'npm:@angular/common@4.2.2/bundles/common.umd.js',
'@angular/compiler': 'npm:@angular/compiler@4.2.2/bundles/compiler.umd.js',
'@angular/platform-browser': 'npm:@angular/platform-browser@4.2.2/bundles/platform-browser.umd.js',
'@angular/platform-browser-dynamic': 'npm:@angular/platform-browser-dynamic@4.2.2/bundles/platform-browser-dynamic.umd.js',
'@angular/http': 'npm:@angular/http@4.2.2/bundles/http.umd.js',
'@angular/forms': 'npm:@angular/forms@4.2.2/bundles/forms.umd.js',
'ionic-angular': 'npm:ionic-angular@3.4.0',
'rxjs': 'npm:rxjs@5.4.1',
'ts': 'npm:plugin-typescript@5.2.7/lib/plugin.js',
'typescript': 'npm:typescript@2.2.1/lib/typescript.js',
'ionic-img-viewer': 'https://npmcdn.com/ionic-img-viewer@2.4.0'
},
// packages tells the System loader how to load when no filename and/or no extension
packages: {
app: {
main: './main.ts',
defaultExtension: 'ts'
},
rxjs: {
defaultExtension: 'js'
},
'ionic-angular': {
main: './umd/index.js',
defaultExtension: 'js'
},
'ionic-img-viewer': {
main: 'dist/ionic-img-viewer.js',
defaultExtension: 'js'
}
}
});
})(this);
/*
Copyright 2016 Google Inc. All Rights Reserved.
Use of this source code is governed by an MIT-style license that
can be found in the LICENSE file at http://angular.io/license
*/
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"removeComments": false,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true
}
}
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { ImageViewerController } from "ionic-img-viewer";
@Component({
selector: 'page-home',
templateUrl: 'app/home.page.html'
})
export class HomePage {
items = [0,1,2,3,4,5];
constructor(public navController: NavController, public imageViewerCtrl: ImageViewerController) { }
onClick(imageToView) {
const viewer = this.imageViewerCtrl.create(imageToView)
viewer.present();
}
}
<ion-header>
<ion-navbar>
<ion-title>Ionic 2 image viewer</ion-title>
</ion-navbar>
</ion-header>
<ion-content padding>
<h1>Great and flexible image viewer for Ionic 2+</h1>
<ul>
<li>Tap on the pic to see it fullscreen</li>
<li>Slide up/down to close the view</li>
<li>Tap on the navigation arrow to close the view</li>
<li>Double tap on the pic when open to zoom</li>
<li>And more !</li>
</ul>
<p>Find out about it on <a href="https://github.com/Riron/ionic-img-viewer">the GitHub repo</a></p>
<img src="http://via.placeholder.com/500?text=classic+example" imageViewer>
<h2>Code opening</h2>
<img src="http://via.placeholder.com/150?text=code+trigger" #imageToView (click)="onClick(imageToView)">
<h2>High res image loading</h2>
<img src="http://via.placeholder.com/150?text=low+res" imageViewer="http://via.placeholder.com/650?text=high+res">
<h2>Images in a list</h2>
<ion-list>
<ion-item class="listItem" *ngFor="let item of items" (click)="itemSelected(item)">
<ion-thumbnail item-left>
<img src="http://via.placeholder.com/300x300" imageViewer>
</ion-thumbnail>
<p>item {{ item }}</p>
</ion-item>
</ion-list>
</ion-content>
image-viewer.ion-page {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
height: 100%;
opacity: 1;
}
image-viewer.ion-page ion-navbar.toolbar .toolbar-background {
background-color: transparent;
}
image-viewer.ion-page ion-navbar.toolbar.toolbar-ios {
padding-top: calc(20px + 4px);
}
image-viewer.ion-page ion-navbar .bar-button-default {
color: white;
}
image-viewer.ion-page .backdrop {
will-change: opacity;
}
image-viewer.ion-page .image-wrapper {
position: relative;
z-index: 10;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
overflow: hidden;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
margin-top: 56px;
-webkit-flex-grow: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
}
image-viewer.ion-page .image {
will-change: transform;
}
image-viewer.ion-page img {
display: block;
max-width: 100%;
max-height: 100%;
margin: 0 auto;
}