metalivedev / virtual-bookshelf

A simple bookshelf made in CSS, HTML and vanilla JS.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Virtual Bookshelf

This is a simple visualisation of books on a bookshelf using some CSS transforms to give the effect of picking out the book when you hover over it.

The author uses it on his personal site to track what books he's read. It integrates nicely with static site generators, and well, just about anything since it's all vanilla JS, CSS and HTML.

Example

How do I add more books?

A book is defined as follows:

<div class="book">
    <div class="side spine">
        <span class="spine-title"> Book Title </span>
        <span class="spine-author"> PG </span>
    </div>
    <div class="side top"></div>
    <div class="side cover"></div>
</div>

or, how he actually does the covers is here:

<div class="book">
        <div class="side spine" style="height: 277px; top: 3px; background-image: var(--argyle); background-color: maroon;">
          <span class="spine-title"> The Anthropocene Reviewed </span>
          <span class="spine-author">
            JG
          </span>
        </div>
        <div class="side top" style="top: 3px;"></div>
        <div class="side cover" style="background-image: url(&quot;https://i.gr-assets.com/images/S/compressed.photo.goodreads.com/books/1616514130l/55145261.jpg&quot;); height: 277px; top: 3px;"></div>
      </div>

Simply add this snippet for each book you want inside <div class="bookshelf">.

Why use JS at all?

I originally aimed for a no-JS implementation but there was no way of adding randomness to the book height, colours and patterns without it. You can of course remove the JS and implement that stuff manually.

Is this free to use?

Yep, do whatever you want with it.

Is it perfect?

Nope. Doesn't handle long titles well. I'm sure there are other alignment issues. I wrote this in a day, don't expect much. Feel free to submit fixes/improvements.

About

A simple bookshelf made in CSS, HTML and vanilla JS.

License:The Unlicense


Languages

Language:CSS 71.0%Language:JavaScript 20.9%Language:HTML 8.1%