mirror of
https://github.com/servo/servo.git
synced 2025-10-09 04:59:23 +01:00
11 lines
232 B
HTML
11 lines
232 B
HTML
<!DOCTYPE HTML>
|
|
<meta charset="utf-8">
|
|
<input type="text" id="reading" />
|
|
<script>
|
|
|
|
let sensor = new AmbientLightSensor();
|
|
sensor.start();
|
|
document.getElementById("reading").value = String(sensor.reading);
|
|
sensor.stop();
|
|
|
|
</script>
|