0

How to create cover page for a website(that disappears by clicking an open button) using jquery?

I have developed a web resume but have no idea how to add a cover page to my website. Can someone one help me to achieve this? Please provide a sample code with html, css and jquery/js.

11th Aug 2017, 11:12 AM
Nivesh
Nivesh - avatar
2 Answers
11th Aug 2017, 11:55 AM
CalviŐ˛
CalviŐ˛ - avatar
+ 1
<div id="cover"> <!-- all your content --> <button id="btn">hide</button> </div> Jquery: $("#btn").click(function() { $("#cover").hide(); })
11th Aug 2017, 11:35 AM
Αητοιπe
Αητοιπe - avatar