Difference between revisions of "Template:SJTU-Software/loadingJs"
Gougoumemeda (Talk | contribs) |
Gougoumemeda (Talk | contribs) |
||
Line 1: | Line 1: | ||
$(document).ready(function(){ | $(document).ready(function(){ | ||
var loading = setInterval(progressBarUpdate, 1000) | var loading = setInterval(progressBarUpdate, 1000) | ||
− | $(".content").load("welcome", function(){ | + | $(".content").load("https://2015.igem.org/Team:SJTU-Software/welcome", function(){ |
$(".progressBar").css("width", "100%") | $(".progressBar").css("width", "100%") | ||
setTimeout(function(){ | setTimeout(function(){ |
Revision as of 19:11, 18 September 2015
$(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") } }