I have a little question, is this possible to make all page overlaying when u push button, example - i have contact page, and on another page like services i have button ‘contact’ and when i push this button page contact overlays my content with all its content.
Best example is: https://www.quintessentially.com/ when u push ‘lets talk’ button or select contact from menu. Contact page overlays main content, but it is separate page too
Yes. You have to build your over-layer first, then hide it (display:none) then add an interaction on the button that says “pass the overlayer display:block” and another interaction on the close button of the opverlayer that says “pass the overlayer display:none”.
When I say over-layer, it can be scrollable too. Make an absolute positionned div, anchored to the top. If there’s enough content in it, it will scroll. Set a min height of 100% while your body has a height of 100% and you kind of cover all the cases.