Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@stuartelimu
Created December 18, 2018 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stuartelimu/f07a1f1f7b2566f2b3e84114827f8ad1 to your computer and use it in GitHub Desktop.
Save stuartelimu/f07a1f1f7b2566f2b3e84114827f8ad1 to your computer and use it in GitHub Desktop.
imageGallery
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Image gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Image gallery example</h1>
<div class="full-img">
<img class="displayed-img" src="images/pic1.jpg">
<div class="overlay"></div>
<button class="dark">Darken</button>
</div>
<div class="thumb-bar">
</div>
<script src="main.js"></script>
</body>
</html>
var displayedImage = document.querySelector('.displayed-img');
var thumbBar = document.querySelector('.thumb-bar');
btn = document.querySelector('button');
var overlay = document.querySelector('.overlay');
/* Looping through images */
for (var i = 1; i <= 5; i++){
var newImage = document.createElement('img');
newImage.setAttribute('src', 'images/pic[i].jpg');
thumbBar.appendChild(newImage);
}
function getImgSrc(){}
newImage.addEventListener('click', 'getImgSrc')
/* Wiring up the Darken/Lighten button */
h1 {
font-family: helvetica, arial, sans-serif;
text-align: center;
}
body {
width: 640px;
margin: 0 auto;
}
.full-img {
position: relative;
display: block;
width: 640px;
height: 480px;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 640px;
height: 480px;
background-color: rgba(0,0,0,0);
}
button {
border: 0;
background: rgba(150,150,150,0.6);
text-shadow: 1px 1px 1px white;
border: 1px solid #999;
position: absolute;
cursor: pointer;
top: 2px;
left: 2px;
}
.thumb-bar img {
display: block;
width: 20%;
float: left;
cursor: pointer;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment