help.ts
1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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');
}
}