--- title: DeviceLightEvent slug: Web/API/DeviceLightEvent tags: - API - Ambient Light Events - Experimental - Interface translation_of: Web/API/DeviceLightEvent ---
{{apiref("Ambient Light Events")}}{{SeeCompatTable}}

DeviceLightEvent は、端末付近の環境光のレベルについての情報を、写真センサーやそれと類似した検知機を通してウェブ開発者に提供します。たとえば、このイベントは、エネルギーを節約したり、より良い視認性を提供したりするために、現在の環境光のレベルに応じて画面の明るさを調節するのに役立ちます。

プロパティ

{{domxref("DeviceLightEvent.value")}}
{{interwiki("wikipedia", "ルクス")}}で表した環境光のレベル

window.addEventListener('devicelight', function(event) {
  console.log(event.value);
});

仕様書

仕様書 状態 備考
{{SpecName('AmbientLight', '', 'Ambient Light Events')}} {{Spec2('AmbientLight')}} 初回定義

ブラウザーの対応

{{Compat("api.DeviceLightEvent")}}

関連情報