-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
47 changes: 47 additions & 0 deletions
47
files/ja/web/api/pagetransitionevent/pagetransitionevent/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
--- | ||
title: "PageTransitionEvent: PageTransitionEvent() コンストラクター" | ||
short-title: PageTransitionEvent() | ||
slug: Web/API/PageTransitionEvent/PageTransitionEvent | ||
l10n: | ||
sourceCommit: aa8fa82a902746b0bd97839180fc2b5397088140 | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
**`PageTransitionEvent()`** コンストラクターは、新しい {{domxref("PageTransitionEvent")}} オブジェクトを生成します。これは、ページが読み込まれたり、読み込まれなかったりする際に {{domxref("window")}} オブジェクトで発行される {{domxref("Window/pageshow_event", "pageshow")}} または {{domxref("Window/pagehide_event", "pagehide")}} イベントで使用します。 | ||
|
||
> [!NOTE] | ||
> ウェブ開発者は通常、このコンストラクターを呼ぶ必要はありません。なぜなら、ブラウザーが {{domxref("Window/pageshow_event", "pageshow")}} または {{domxref("Window/pagehide_event", "pagehide")}} イベントを発行すると、これらのオブジェクトを自動的に作成するからです。 | ||
## 構文 | ||
|
||
```js-nolint | ||
new PageTransitionEvent(type, options) | ||
``` | ||
|
||
### 引数 | ||
|
||
- `type` | ||
- : イベント名の文字列です。 | ||
大文字小文字の区別があり、ブラウザーは `pageshow` または `pagehide` に設定します。 | ||
- `options` {{optional_inline}} | ||
- : オブジェクトで、_{{domxref("Event/Event", "Event()")}} で定義されているプロパティに加えて_、以下のプロパティがあります。 | ||
- `persisted` {{optional_inline}} | ||
- : 論理値で、文書内のキャッシュから読み込んでいるかどうかを示します。 | ||
|
||
### 返値 | ||
|
||
新しい {{domxref("PageTransitionEvent")}} オブジェクトです。 | ||
|
||
## 仕様書 | ||
|
||
{{Specifications}} | ||
|
||
## ブラウザーの互換性 | ||
|
||
{{Compat}} | ||
|
||
## 関連情報 | ||
|
||
- [`pageshow`](/ja/docs/Web/API/Window/pageshow_event) イベント | ||
- [`pagehide`](/ja/docs/Web/API/Window/pagehide_event) イベント |