In this Elementor tutorial I will show you how to pull off this cool “right click” secret menu.
I came across this idea from the Arcade website and thought it would be fun to recreate it in Elementor.
Website Links:
Timestamps:
- 0:00 Introduction
- 0:56 No Animation Example
- 7:13 CSS Animation Example
No Animation CSS Code
#rtmenu{display:none;}
No Animation JavaScript Code
Animation CSS Code
#rtmenu {
transition: all 320ms cubic-bezier(0.18, 0.88, 0.32, 1.27);
transform-origin: top left;
transform: translate(0px, 5px) scale(0.5);
opacity: 0;
visibility: hidden;
}
#rtmenu.visible {
opacity: 1;
visibility: visible;
transform: translate(0px, 10px) scale(1);
}
Animation JavaScript Code