blob: c1e16410d694c84c3e8f5a6210a4660062f63419 (
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
65
66
67
68
69
70
71
72
|
---
title: Notification.dir
slug: Web/API/notifiche/dir
translation_of: Web/API/Notification/dir
---
<p>{{APIRef("Web Notifications")}}</p>
<p>La proprieta' in sola lettura <code>dir</code> dell'interfaccia {{domxref("Notification")}} indica la direzione del testo della notifica, puo' essere specificata nell'opzione <code>dir</code> del costruttore di {{domxref("Notification.Notification","Notification()")}} .</p>
<p>{{AvailableInWorkers}}</p>
<h2 id="Syntax" name="Syntax">Sintassi</h2>
<pre class="eval">var <em>direzione</em> = Notification.dir;
</pre>
<h3 id="Return_Value" name="Return_Value">Valori</h3>
<p>La {{domxref("DOMString")}} specifica la direzione el testo. I possibili valori sono:</p>
<ul>
<li><code>auto</code>: adotta il comportamento delle impostazioni del browser (valore di default.)</li>
<li><code>ltr</code>: da sinistra a destra. ( es. |testo notifica | )</li>
<li><code>rtl</code> : da destra a sinistra.( es. | testo notifica|) </li>
</ul>
<div class="note">
<p><strong>Note</strong>: La maggior parte dei browser ignora le opzioni esplicite settate e funzionano con le proprie impostazioni.</p>
</div>
<h2 id="Esempi">Esempi</h2>
<p>Il seguente frammento di codice crea un oggetto <code>opzioni</code>, da passare al costruttore <code>Notification()</code>.</p>
<pre class="brush: js">var opzioni = {
body: 'Amo JavaScript!',
dir: 'rtl'
}
var n = new Notification('Mio titolo',opzioni);
n.dir // dovrebbe ritornare 'rtl'
</pre>
<h2 id="Specifications">Specifications</h2>
<table>
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
<tr>
<td>{{SpecName('Web Notifications','#dom-notification-dir','dir')}}</td>
<td>{{Spec2('Web Notifications')}}</td>
<td>Living standard</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("api.Notification.dir")}}</p>
<h2 id="See_also">See also</h2>
<ul>
<li><a href="/en-US/docs/Web/API/Notifications_API/Using_the_Notifications_API">Using the Notifications API</a></li>
</ul>
|