-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from Sahiti-Dev/sri_teja
progressbar
- Loading branch information
Showing
8 changed files
with
133 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -89,6 +89,11 @@ | |
</div> | ||
|
||
<header class="header-area"> | ||
<div class="progress1"> | ||
<div class="progress-container"> | ||
<div class="progress-bar" id="myBar"></div> | ||
</div> | ||
</div> | ||
<div class="classy-nav-container breakpoint-off"> | ||
<div class="container"> | ||
<nav class="classy-navbar justify-content-between" id="conferNav"> | ||
|
@@ -620,8 +625,18 @@ <h6>[email protected]</h6> | |
$(".loadmain").hide();} | ||
|
||
</script> | ||
|
||
<script src="js/events/validation.js"></script> | ||
<script> | ||
// When the user scrolls the page, execute myFunction | ||
window.onscroll = function() {myFunction()}; | ||
|
||
function myFunction() { | ||
var winScroll = document.body.scrollTop || document.documentElement.scrollTop; | ||
var height = document.documentElement.scrollHeight - document.documentElement.clientHeight; | ||
var scrolled = (winScroll / height) * 100; | ||
document.getElementById("myBar").style.width = scrolled + "%"; | ||
} | ||
</script> | ||
<script src="js/events/validation.js"></script> | ||
<script src="js/popper.min.js"></script> | ||
<script src="js/bootstrap.min.js"></script> | ||
<script src="js/confer.bundle.js"></script> | ||
|