Skip to content

Instantly share code, notes, and snippets.

@Mukhammadamin2002
Created October 15, 2020 12:07
Show Gist options
  • Save Mukhammadamin2002/c19096d8718ae9c511df91284f49469e to your computer and use it in GitHub Desktop.
Save Mukhammadamin2002/c19096d8718ae9c511df91284f49469e to your computer and use it in GitHub Desktop.
<!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