|
|
(One intermediate revision by the same user not shown) |
Line 1: |
Line 1: |
− | $(document).ready(function(){
| |
− | var loading = setInterval(progressBarUpdate, 1000)
| |
− | $(".content").load("https://2015.igem.org/Team:SJTU-Software/welcome", function(){
| |
− | $(".progressBar").css("width", "100%")
| |
− | setTimeout(function(){
| |
− | $(".loading").fadeOut(500, function(){
| |
− | $(".loading").remove()
| |
− | $(".content").css("display", "inline")
| |
− | })
| |
− | },1000)
| |
− | clearInterval(loading)
| |
− | })
| |
− | })
| |
| | | |
− | var progressBarUpdate = function(){
| |
− | var currentWidth = $(".progressBar").css("width")
| |
− | var width = parseInt(currentWidth.substring(0, currentWidth.length - 2))
| |
− | if (width <= $(window).width() * 0.9){
| |
− | width += 100;
| |
− | $(".progressBar").css("width", width.toString() + "px")
| |
− | }
| |
− | }
| |