Created
October 15, 2020 12:07
-
-
Save Mukhammadamin2002/c19096d8718ae9c511df91284f49469e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Bulb magic</title> | |
<style> | |
button { padding: 10px; margin: 60px; background-color: orange; | |
} | |
#bulb { | |
padding-left: 150px; | |
</style> | |
</head> | |
<body> | |
<script> | |
function light(value) | |
{ | |
var pic; | |
if (value==0) | |
{ | |
pic="pic_bulboff.gif"; | |
} | |
else | |
{ | |
pic="pic_bulbon.gif"; | |
} | |
document.getElementById('bulb').src=pic; | |
} | |
</script> | |
<img id="bulb" src="pic_bulboff.gif"> | |
<br> | |
<button onclick="light(1)">Turn On</button> | |
<button onclick="light(0)">Turn Of</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment