File size: 609 Bytes
bf3d422
 
 
 
 
d7d15f9
bf3d422
 
 
 
 
75673f4
1
2
3
4
5
6
7
8
9
10
11
12
13
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
});