Playing around with thumbnail layout, wire up js
Testing grid layout with thumbnails for images. Beginning of writing JS for enlaring images to their own window.
This commit is contained in:
parent
eb47e1a04b
commit
bfe46a15c1
61
index.html
61
index.html
|
@ -18,6 +18,65 @@
|
|||
<div class="separator"></div>
|
||||
|
||||
<div class="window-pane">
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
|
||||
<figure>
|
||||
<img src="img/thumbnails/noisycat_thumb.jpg" alt="A thumbnail of an image of baxter looking at the camera.">
|
||||
<figcaption>noisycat.jpg</figcaption>
|
||||
</figure>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -28,5 +87,7 @@
|
|||
<p class="dialog-text">In the "Baxter Images" dialog, you can single-click on a photo to view it with a small description.</p>
|
||||
<p class="dialog-text">I hope you enjoy this little nostalgia trip featuring my cat, you can go back to his normal homepage <a href="https://thiscat.rocks/">here</a>.</p>
|
||||
</div>
|
||||
|
||||
<script src="js/script.js"></script>
|
||||
</body>
|
||||
</html>
|
|
@ -34,4 +34,10 @@ p {
|
|||
line-height: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
.window-pane {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr 1fr;
|
||||
justify-items: center;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue