Skip to content

Instantly share code, notes, and snippets.

@courajs
Created January 31, 2017 18:31
Show Gist options
  • Save courajs/628ffc5c8b08d8af44b31f045b00db92 to your computer and use it in GitHub Desktop.
Save courajs/628ffc5c8b08d8af44b31f045b00db92 to your computer and use it in GitHub Desktop.
Exported from Popcode. Click to import: https://popcode.org/?gist=628ffc5c8b08d8af44b31f045b00db92
<!DOCTYPE html>
<html>
<head>
<title>Elephant Gallery</title>
</head>
<body>
<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>
{"enabledLibraries":["jquery"]}
$('.gallery-thumb').click(function() {
var src = $(this).attr('src');
$('#gallery-main').attr('src', src);
$('#gallery-main').show();
});
#gallery {
width: 50%;
margin-left: auto;
margin-right: auto;
min-height: 200px;
}
.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%;
display: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment