DEV Community

Cover image for JavaScript Pinterest Clone
an-object-is-a
an-object-is-a

Posted on

JavaScript Pinterest Clone

Create a Pinterest Clone using HTML, CSS, & JavaScript


Browse our Teachable courses.


JavaScript Pinterest Clone

We'll build our mock-up in steps.

  1. Create a mock-up of a single Pinterest Pin.
  2. Create a mock-up of the Pinterest "Add a Pin Screen".
  3. Merge the above; Use the "Add Pin Screen" to generate a single Pinterest Pin.
  4. Transfer the logic of our merge in step 3 into our Pinterest Layout.

"Pinterest Pin" Mock-Up

Each Pin is made up of 3 sections.

  1. Pin title - the user won't see this; you can use this on the back-end as a way to store the Pin in a database
  2. Pin modal - this is the overlay for each card; this won't be functional for this tutorial, just cosmetic

pin modal

  1. Pin image - the actual image the user uploads

pin image

Each pin has a "header" and "footer".

head-foot pin

<div class="card">
    <div class="pin_title"></div>
    <div class="pin_modal">
        <div class="modal_head">
        </div>

        <div class="modal_foot">
        </div>
    </div>

    <div class="pin_image">
        <img src="" alt="pin_image">
    </div>
</div>
Enter fullscreen mode Exit fullscreen mode

"Add a Pin" Modal Mock-Up

The Modal is made up of 9 sections.

  1. Modal overlay - the transparent black background
  2. Add Pin container - the main interface of the screen
  3. Left side - the left half of our interface
  4. Right side - the right half of our interface
  5. Left side Header - a simple button leading to options
  6. Left side Body - the user's image shows up here
  7. Left side Footer - an option to upload an image from the web
  8. Right side Header - select the Pin size (small, med, large)
  9. Right side Body - information about the Pin is entered here

modal

<div class="add_pin_modal">
    <div class="add_pin_container">
        <div class="side" id="left_side">
            <div class="section1">
            </div>

            <div class="section2">
            </div>

            <div class="section3">
            </div>
        </div>

        <div class="side" id="right_side">
            <div class="section1">
            </div>

            <div class="section2">
            </div>
        </div>
    </div>
</div>
Enter fullscreen mode Exit fullscreen mode

Merge our Pin and "Add Pin Screen".

When we click save, we create a Pin.

document.querySelector('#save_pin').addEventListener('click', () => {
    const new_pin_data = {
        author: 'Jack',
        board: 'default',
        title: document.querySelector('#pin_title').value,
        description: document.querySelector('#pin_description').value,
        destination: document.querySelector('#pin_destination').value,
        img_blob: pin_image_blob,
        pin_size: document.querySelector('#pin_size').value
    }

    create_pin(new_pin_data);
});
Enter fullscreen mode Exit fullscreen mode

merge


The Final Pinterest Board

We'll take our Pinterest Layout from a different tutorial.

In a previous tutorial, we created the Pinterest Layout using CSS Grids.

We'll import that code and use that layout as our pin_container for this project.

You can find that tutorial here.

This merge is very simple. There is no new HTML here.

The major change comes in our CSS and JavaScript.

In our CSS, we create three new class definitions; the small, medium, and large Pin options.

.card_large {
    grid-row-end: span var(--card_large);
}

.card_medium {
    grid-row-end: span var(--card_medium);
}

.card_small {
    grid-row-end: span var(--card_small);
}
Enter fullscreen mode Exit fullscreen mode

Then based on which pin size the user chooses, we add that class to the Pin before attaching it to our pin_container.

new_pin.classList.add(`card_${pin_details.pin_size}`);
Enter fullscreen mode Exit fullscreen mode

final_board


There is much more nuance to this project.

You can get the source files here and you can follow the video tutorial down below.


If you want a more in-depth guide, check out my full video tutorial on YouTube, An Object Is A.

Create a Pinterest Clone using HTML, CSS, & JavaScript

Top comments (0)