| const brightnessControl = document.getElementById('brightness-control'); | |
| const lampShade = document.getElementById('lamp-shade'); | |
| brightnessControl.addEventListener('input', function() { | |
| const brightness = brightnessControl.value; | |
| // Adjust lamp brightness by modifying the lamp shade shadow intensity and color | |
| const brightnessValue = brightness / 100; | |
| lampShade.style.boxShadow = `0 0 ${15 * brightnessValue}px rgba(255, 215, 0, ${brightnessValue})`; | |
| lampShade.style.backgroundColor = `rgba(255, 215, 0, ${brightnessValue})`; // Adjust color opacity for brightness effect | |
| }); | |