help.ts 1.26 KB
import { Component } from '@angular/core';
import { NavController, NavParams } from 'ionic-angular';

/*
  Generated class for the Help page.

  See http://ionicframework.com/docs/v2/components/#navigation for more info on
  Ionic pages and navigation.
*/
@Component({
  selector: 'page-help',
  templateUrl: 'help.html'
})
export class HelpPage {

    slides = [
      {
        title: "問題について",
        description: "問題は正解、不正解に関わらず1問挑戦すると次の1問が開きます。",
        image: "assets/img/help/help1.png",
      },
      {
        title: "キーワードについて",
        description: "1問終わるごとに、1文字のキーワードを入手できます。",
        image: "assets/img/help/help2.png",
      },
      {
        title: "次のステージについて",
        description: "すべての問題が終わったら、入手したキーワードを並び替えてひとつの単語を作成してください。正しい単語を入力すると、次のステージが入手できます。",
        image: "assets/img/help/help3.png",
      }
    ];

  constructor(public navCtrl: NavController, public navParams: NavParams) {}

  ionViewDidLoad() {
    console.log('ionViewDidLoad HelpPage');
  }

}