applican

マイページに戻る

SplashScreen

スプラッシュ画像を表示します。画像は画面いっぱいになるように自動的に拡大します。推奨サイズ 縦画像 640x1136、横画像 1136x640

機能

スプラッシュ画像を表示する 【 show 】

スプラッシュ画像を非表示にする 【 hide 】

利用用途

アプリ起動時にロゴやカバー画像を表示したい場合、こちらの機能をご利用ください。

【対応ランタイムバージョン】

ランタイムのバージョン毎に最適化したサンプルをダウンロードしてご使用ください。

サンプル SplashScreen
サンプル SplashScreen
サンプル SplashScreen
サンプル SplashScreen

メソッド

  • show(String verticalImagePath, String horizontalImagePath, Number timeout)
  • hide()

show

メソッド説明

show(String verticalImagePath, String horizontalImagePath, Number timeout)

スプラッシュ画像を表示します。

パラメータ

verticalImagePath : String 縦画像を指定します。webディレクトリからの相対パスを指定します。
horizontalImagePath : String 横画像を指定します。webディレクトリからの相対パスを指定します。
timeout : Number スプラッシュ画像を非表示にするまでの時間を指定します。(ミリ秒)指定しない場合はタイムアウトしません。

Return

void

サンプルコード

//スプラッシュ表示
function showSplash(){
	applican.splashscreen.show('splash/splash2_portrait.png', 'splash/splash2_landscape.png', 3000);
}
function showSplash1(){
	//javascriptでタイムアウト
	applican.splashscreen.show('splash/splash1_portrait.png', 'splash/splash1_landscape.png');

	setTimeout(function() {
		applican.splashscreen.hide();
	}, 2000);
}

hide

メソッド説明

hide()

スプラッシュ画像を非表示にします。

パラメータ

(none)

Return

void

サンプルコード

//スプラッシュ画像を非表示に。
applican.splashscreen.hide();