aboutsummaryrefslogtreecommitdiff
path: root/files/de/web/css/@media/pointer/index.html
blob: 4c1ff0fc8bdb59cb6bd4bbc343946de49b2e9e6a (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
---
title: pointer
slug: Web/CSS/@media/pointer
translation_of: Web/CSS/@media/pointer
---
<div>{{cssref}}</div>

<p>Das <a href="/en-US/docs/CSS">CSS</a> {{cssxref("@media")}} media Merkmal <strong><code>pointer</code></strong> wird verwendet um Styles abhängig vom primären Eingabemechanismus des Geräts anzuwenden. Es gibt aufschluss darüber ob der primäre Eingabemechanismus ein Zeigegerät ist, und wenn ja, wie präzise es ist.</p>

<h2 id="Syntax">Syntax</h2>

<p>Die Einstellungsmöglichkeiten für das Merkmal <code>pointer</code>  sind in der folgenden Liste aufge</p>

<dl>
 <dt><code>none</code></dt>
 <dd>Das Gerät verfügt nur über Tastatur</dd>
 <dt><code>coarse</code></dt>
 <dd>Das Gerät verfügt über ein Eingabegerät mit limitierter Präzision (z.B. Touch)</dd>
 <dt><code>fine</code></dt>
 <dd>Das Gerät verfügt über einen sehr präzises Eingabegerät (z.B. Maus, Touchpad, Stift)</dd>
</dl>

<h2 id="Beispiel">Beispiel</h2>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;input id="test" type="checkbox" /&gt;
&lt;label for="test"&gt;Look at me!&lt;/label&gt;</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css">input[type="checkbox"]:checked {
  background: gray;
}

@media (pointer: fine) {
  input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 15px;
    height: 15px;
    border: 1px solid blue;
  }
}

@media (pointer: coarse) {
  input[type="checkbox"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid red;
  }
}</pre>

<h3 id="Result">Result</h3>

<p>{{EmbedLiveSample("Example")}}</p>

<h2 id="Spezifikationen">Spezifikationen</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Specification</th>
   <th scope="col">Status</th>
   <th scope="col">Comment</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('CSS4 Media Queries', '#pointer', 'pointer')}}</td>
   <td>{{Spec2('CSS4 Media Queries')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_Kompatibilität">Browser Kompatibilität</h2>



<p>{{Compat("css.at-rules.media.pointer")}}</p>

<h2 id="See_also">See also</h2>

<ul>
 <li><a href="/en-US/docs/Web/CSS/@media/any-pointer">the <code>any-pointer</code> media feature</a></li>
</ul>