I have experience with HTML and CSS.
Below is the HTML code:
<div id="wrapper">
<ul id="top">
<center><li><a href="#one" class="button">GENERATE</a></li></center>
</ul>
<div class="box" id="one">
<span style="width:1%"></span>
</div>
</div>
This is the CSS code:
.box {
left: 50px;
right: 50px;
width: 80%;
margin-bottom: 50px;
border: 2px solid #000;
box-shadow: 10px 10px 5px #888888;
background-color: #f90;
opacity: 0;
-webkit-transition: all 1s linear;
-ms-transition: all 1s linear;
-moz-transition: all 1s linear;
-0-transition: all 1s linear;
transition: all 1s linear;
}
.box: target {
opacity: 1;
-webkit-transition: all 1s linear;
-ms-transition: all 1s linear;
-moz-transition: all 1s linear;
-0-transition: all 1s linear;
transition: all 1s linear;
}
#one {
... (CSS properties continue)
The desired functionality is for a progress bar to start loading when someone clicks on the button, stop at 50%, and then open a popup window.
The popup window should display text along with a button.
To see a demo, follow this link: MYCODE