aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/notification/icon/index.html
blob: e049b72802a53e7ec4cb0e1191dcb0c0a7bae41b (plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
title: Notification.icon
slug: Web/API/Notification/icon
tags:
  - API
  - DOM
  - Notification
  - Notifications
  - Notifications API
  - Property
  - Reference
  - icon
  - プロパティ
  - 通知
translation_of: Web/API/Notification/icon
---
<p>{{APIRef("Web Notifications")}}{{AvailableInWorkers}}{{securecontext_header}}</p>

<p><strong><code>icon</code></strong>{{domxref("Notification")}} インターフェイスの読取専用プロパティで、 {{domxref("Notification.Notification","Notification()")}} コンストラクターの <code>icon</code> オプションで指定された、通知の一部として表示されるアイコンの URL を含みます。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">var <var>icon</var> = <var>Notification</var>.icon;
</pre>

<h3 id="Value" name="Value"></h3>

<p>{{domxref("USVString")}} です。</p>

<h2 id="Examples" name="Examples"></h2>

<p><a class="external external-icon" href="https://github.com/mdn/to-do-notifications/tree/gh-pages" rel="noopener">To-do リストアプリ</a> (<a class="external external-icon" href="https://mdn.github.io/to-do-notifications/" rel="noopener">ライブで実行するアプリを表示</a>) では、 {{domxref("Notification.Notification","Notification()")}} コンストラクターを使用して通知を発行し、希望する本文、アイコン、タイトルを指定するために引数を渡します。</p>

<pre class="brush: js notranslate">var notification = new Notification('To do list', {
  body: text,
  icon: img
});</pre>

<h2 id="Specifications" name="Specifications">仕様書</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
  <tr>
   <td>{{SpecName('Web Notifications','#dom-notification-icon','icon')}}</td>
   <td>{{Spec2('Web Notifications')}}</td>
   <td>Living standard</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<p>{{Compat("api.Notification.icon")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li><a href="/ja/docs/Web/API/Notifications_API/Using_the_Notifications_API">通知 API の使用</a></li>
</ul>