Overlay Screen after button WEB | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Overlay Screen after button WEB

Hello, I am very new to web. Is for a Practical Work for university using HTML 4. The point is, that I need to know how to create a button that when touched displays a full screen overlay (with a gif on it and text, just like a loading screen) and after waiting a few seconds, the screen should disappear.

19th Mar 2018, 9:51 PM
Thorinsgard
Thorinsgard - avatar
3 Answers
+ 2
I’d suggest making the button cause a div to become visible with everything you want (so you can plan it in html and not in JavaScript) and use the setTimeout() function to make disappear after a few seconds
19th Mar 2018, 9:59 PM
Ariela
Ariela - avatar
0
I don't exactly want to tell you exactly how to do it (as it is a university project), so here are a few resources that could help you - https://www.sololearn.com/learn/JavaScript/2756/ https://www.sololearn.com/learn/HTML/1030/
19th Mar 2018, 10:01 PM
Faisal
Faisal - avatar
0
You could set a button by using the <button> tag, and set an onclick function within it to display the picture too. <button onclick = "function()">MEME</button>
19th Mar 2018, 10:02 PM
Faisal
Faisal - avatar