Yogesh Chauhan's Blog

Create a menu with a curtain falling animation using CSS and JavaScript

in CSS & JavaScript on May 30, 2021

The basic concept of making the curtain falling effect lies in the CSS perspective property.

Using this perspective property, we can add some perspective to an element that are positioned in 3D. It determines the distance between the z=0 plane and the user or in other words, it determines how far the object is away from the user. So, a lower value will result in a more intensive 3D effect than a higher value.

Let’s go through the step by step process of creating it.

Step 1: HTML

Let’s create a menu button and menu section first.

Step 2: CSS

Let’s add some basic CSS to organize the menu and buttons. The same concept of adding menu absolutely positioned and organizing elements using flex.

I am using SCSS but you can always convert it to a CSS using any online or offline convertors.


Step 3: JavaScript

Just some basic JavaScript code, getting the elements using getElementById method and changing the display property of the menu container.

Now, you can click on the button and toggle the menu visibility.


const menu = document.getElementById("menu");

document.getElementById("menu-button-open").addEventListener("click", function() {
  menu.style.display = "block";
});

document.getElementById("menu-button-close").addEventListener("click", function() {
  menu.style.display = "none";
});



Step 4: Animation

As I’ve mentioned earlier, we’re going to use CSS perspective property with transform-origin property to create the animation using @keyframes.

Similar animation post:

How to create a flip effect with CSS?


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
async function in JavaScriptJavaScriptHow to create a cross-browser smooth scrolling with jQuery?jQueryHow to add and remove capabilities from a role in WordPress?WordPressUnderstand Inheritance in PHP in this Basic Example (For Beginners)PHPThe * arithmetic operator in Envision BasicEnvision BasicWhat’s a page re-rendering in React?React