DEV Community

Elmouatez Billah Benariba
Elmouatez Billah Benariba

Posted on • Updated on

Build a button that shows and hides a paragraph - Elzero Frontend Challenges

Overview on Elzero Frontend Challenges

Elzero Frontend Challenges is a collection of coding challenges designed for learners who want to improve their HTML and CSS skills. Created by Osama Mohamed (Elzero), these challenges are available in the frontend track of Elzero Web School[1]

Introduction

As part of my journey to enhance my frontend skills, I took on the Elzero Frontend Challenges. Initially, progress was slow, but I was determined to overcome the obstacles and improve my abilities. Upon my return to the challenges, I encountered some new additions that piqued my interest. In this blog post, I will share my experience and insights gained from tackling the "show/hide paragraph challenge".

Understanding the Challenge

The objective of this challenge was to create a button that toggles the visibility of a paragraph when clicked. While seemingly simple, it taught me an important lesson: "Understanding the question is half the answer."

Building the Foundation

To begin, I created a basic HTML structure for the challenge. Following best practices, I adhered to the BEM (Block, Element, Modifier) naming convention, ensuring a clean and organized codebase. With the foundation in place, I proceeded to the next stage of styling the elements using CSS.

<div class="container action">
  <button class="action__btn">Click</button>
  <p class="action__content">This is My Paragraph</p>
</div>
Enter fullscreen mode Exit fullscreen mode

a flowchart of the used html structure

Perfecting the Styling

To achieve the desired design, I leveraged CSS to add the necessary visual enhancements.

For the button, I removed the default border styling and added a hover effect that changed the mouse cursor to a hand. These subtle details contribute to a better user experience.

.action__btn {
  /* reset all inherited styles to their initial value */
  all: unset;
  /* add custom button style */
  padding: 0.2rem 1.2rem;  
  background-color: var(--cyan-100);
  border-color: var(--cyan-100);
  border-radius: 0.4rem;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}
Enter fullscreen mode Exit fullscreen mode

Moving on to the paragraph, I applied appropriate styles to ensure they aligned with the provided design.

I used the "Perfect Pixel" extension to ensure precise pixel-sized programming since I only had an image of the design and not a Figma or Adobe XD file.

JavaScript Implementation

As I delved into the JavaScript implementation, I initially planned to create an event listener that would toggle classes with each click, allowing for seamless show/hide functionality. However, upon re-reading the challenge requirements, I realized the need to incorporate the window.getComputedStyle() method.

Understanding the question is half the answer.

Taking a Closer Look at getComputedStyle()

The Window.getComputedStyle() method returns an object containing the values of all CSS properties of an element, after applying active stylesheets and resolving any basic computation those values may contain [2]. By utilizing this function, we can retrieve the visibility property value and manipulate it accordingly.

Solution

To bring the challenge to life, I wrote the following JavaScript code:

const actionBtn = document.querySelector('.action__btn');
const actionCtn = document.querySelector('.action__content');
const CtnComptStyle = window.getComputedStyle(actionCtn);

function setOpacity() {
  CtnComptStyle.visibility === 'visible'
    ? actionCtn.style.setProperty('visibility', 'hidden')
    : actionCtn.style.setProperty('visibility', 'visible');
}

actionBtn.addEventListener('click', setOpacity);
Enter fullscreen mode Exit fullscreen mode

The code above checks the visibility styling of the paragraph element when the button is clicked. By toggling the visibility property between 'visible' and 'hidden', the paragraph is displayed or hidden accordingly.

Links

Key Takeaways

  1. Understanding the challenge requirements is crucial for success. Take the time to comprehend the task before diving into implementation.
  2. Adopt best practices such as using structured HTML, following naming conventions, and applying appropriate CSS styles.
  3. Use getComputedStyle to access and manipulate computed styles of elements dynamically.

Give it a Try!

I invite you to rate my work and give it a try yourself. Engaging in frontend challenges like this one can be an excellent opportunity to enhance your skills, expand your knowledge, and improve your problem-solving abilities.

Top comments (0)