This is an experimental technology
Because this technology's specification has not stabilized, check the compatibility table for the proper prefixes to use in various browsers. Also note that the syntax and behavior of an experimental technology is subject to change in future versions of browsers as the spec changes.
A API de Informações de Rede fornece informação sobre a conexão do sistema, assim como a banda atual do dispositivo do usuário ou qualquer conexão que seja medida. Essa pode também ser usada para selecionar conteúdo de alta ou baixa definição baseado na conexão do usuário. Toda a API consiste na adição da interface domxref("Connection") e uma única propriedade a interface Navigator
: Navigator.connection
.
Detectando mudanas de conexão
Este é um exemplo vê mudança na conexão do usuário. Essa é similar a como uma app pode alertar quando o usuário move de uma conexão de alto para baixo custo por exemplo, a fim de reduzir a demanda da banda para previnir que o usuário seja submetido a cargos substanciais.
var connection = navigator.connection || navigator.mozConnection || navigator.webkitConnection; function updateConnectionStatus() { alert("Connection bandwidth: " + connection.bandwidth + " MB/s"); if (connection.metered) { alert("The connection is metered!"); } } connection.addEventListener("change", updateConnectionStatus); updateConnectionStatus();
Especificações
Specification | Status | Comment |
---|---|---|
Network Information API | Working Draft | Initial specification |
Compatibilidade com Navegadores
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | Not supported | 12.0 moz | Not supported | Not supported | Not supported |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | 2.2 webkit | 12.0 moz | 1.0.1 moz | Not supported | Not supported | Not supported |
Gecko notes
- The Network API can be disabled using the
dom.network.enabled
preference.