diff options
Diffstat (limited to 'files/pt-br/web/http/headers/dpr/index.html')
-rw-r--r-- | files/pt-br/web/http/headers/dpr/index.html | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/files/pt-br/web/http/headers/dpr/index.html b/files/pt-br/web/http/headers/dpr/index.html new file mode 100644 index 0000000000..f159528f85 --- /dev/null +++ b/files/pt-br/web/http/headers/dpr/index.html @@ -0,0 +1,63 @@ +--- +title: DPR +slug: Web/HTTP/Headers/DPR +tags: + - Cabeçalho HTTP + - Cabeçalho de requisição + - Client hints + - DPR + - HTTP +translation_of: Web/HTTP/Headers/DPR +--- +<div>{{HTTPSidebar}}{{securecontext_header}}{{SeeCompatTable}}</div> + +<p>O cabeçalho <code><strong>DPR</strong></code> é um cabeçalho de requisição <em><a href="/en-US/docs/Glossary/Client_hints">Client Hints</a></em> que representa a razão de pixeis do dispositivo do cliente, por isso ({{Glossary("DPR")}})(<em>device pixel ratio</em>), que é o número de pixeis físicos do dispositivo correspondendo a cada pixel CSS.</p> + +<table class="properties"> + <tbody> + <tr> + <th scope="row">Tipo de cabeçalho</th> + <td>{{Glossary("Request header")}}</td> + </tr> + <tr> + <th scope="row">{{Glossary("Forbidden header name")}}</th> + <td>?</td> + </tr> + </tbody> +</table> + +<div class="blockIndicator note"> +<p><strong>Nota:</strong> <em>Client Hints</em> são acessíveis somente em origens seguras (via TLS). Servidor deve optar em receber um cabeçalho <code>DPR</code> do cliente enviando cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} e {{HTTPHeader("Accept-CH-Lifetime")}}.</p> +</div> + +<h2 id="Sintaxe">Sintaxe</h2> + +<pre class="syntaxbox">DPR: <number> +</pre> + +<h2 id="Exemplos">Exemplos</h2> + +<p>O servidor primeiro optar por receber o cabeçalho <code>DPR</code> enviando os cabeçalhos de resposta {{HTTPHeader("Accept-CH")}} contendo <code>DPR</code> e {{HTTPHeader("Accept-CH-Lifetime")}}.</p> + +<pre>Accept-CH: DPR +Accept-CH-Lifetime: 86400 +</pre> + +<p>Então as requisições subsequentes do cliente podem enviar o cabeçalho <code>DPR</code> de volta:</p> + +<pre>DPR: 1.0 +</pre> + +<h2 id="Compatibilidade_de_navegador">Compatibilidade de navegador</h2> + +<p class="hidden">The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p> + +<p>{{Compat("http.headers.DPR")}}</p> + +<h2 id="Veja_também">Veja também</h2> + +<ul> + <li>{{HTTPHeader("Accept-CH")}}</li> + <li>{{HTTPHeader("Accept-CH-Lifetime")}}</li> + <li>{{HTTPHeader("Vary")}}</li> +</ul> |