Created
December 13, 2016 04:09
-
-
Save oshoham/14453122dc2a23fa8b0fdd89ba40194a to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=14453122dc2a23fa8b0fdd89ba40194a
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>jQuery Fun House Solution Code</title> | |
</head> | |
<body> | |
<div class="section"> | |
<h1>What is your name? | |
<input id="name"> | |
</h1> | |
<div> | |
<button id="submit-name" value="That’s my name">That’s my name</button> | |
</div> | |
<p id="greeting">Hi </p> | |
</div> | |
<div class="section"> | |
<button id="change-color">Change the page‘s color!</button> | |
</div> | |
<div class="section" id="gallery"> | |
<h1>Pictures of elephants</h1> | |
<img class="gallery-thumb" id="pic1" src="https://upload.wikimedia.org/wikipedia/commons/f/f9/Loxodonta_africana_-_old_bull_(Ngorongoro,_2009).jpg"> | |
<img class="gallery-thumb" id="pic2" src="https://upload.wikimedia.org/wikipedia/commons/6/63/African_elephant_warning_raised_trunk.jpg"> | |
<img class="gallery-thumb" id="pic3" src="https://iso.500px.com/wp-content/uploads/2014/08/2048-5.jpg"> | |
<img id="gallery-main" src="www.fake.com"> | |
</div> | |
</body> | |
</html> |
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
{"enabledLibraries":["jquery"]} |
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
$("#submit-name").click(function() { | |
$("#greeting").append($("#name").val()); | |
}); | |
$("#change-color").click(function() { | |
$("body").css("background-color", "blue"); | |
}); | |
$("#pic1").click(function(){ | |
$("#gallery-main").attr("src", "https://upload.wikimedia.org/wikipedia/commons/f/f9/Loxodonta_africana_-_old_bull_(Ngorongoro,_2009).jpg"); | |
}); | |
$("#pic2").click(function(){ | |
$("#gallery-main").attr("src", "https://upload.wikimedia.org/wikipedia/commons/6/63/African_elephant_warning_raised_trunk.jpg"); | |
}); | |
$("#pic3").click(function(){ | |
$("#gallery-main").attr("src", "https://iso.500px.com/wp-content/uploads/2014/08/2048-5.jpg"); | |
}); |
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
#gallery { | |
width: 50%; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
.gallery-thumb { | |
display: block; | |
float: left; | |
padding: 5px; | |
box-sizing: border-box; | |
width: 33%; | |
} | |
#change-color { | |
width: 300px; | |
text-align: center; | |
display: block; | |
margin: 0 auto; | |
font-size: 3em; | |
} | |
.section { | |
padding: 1em 0; | |
border-bottom: 2px dashed gray; | |
} | |
h1, #submit-name { | |
font-size: 2em; | |
} | |
input { | |
font-size: 1em; | |
} | |
#greeting { | |
text-align: center; | |
font-size: 2em; | |
text-shadow: 3px 3px 3px gray; | |
} | |
#gallery-main { | |
width: 100%; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment