47 lines
1.7 KiB
Plaintext
47 lines
1.7 KiB
Plaintext
<div class="project_r_h">
|
|
<h2 class="project_h22"><%= l(:label_project_dts_yun) %></h2>
|
|
</div>
|
|
|
|
<!--JS进度条-->
|
|
<style type="text/css">
|
|
#out{}
|
|
#in{}
|
|
#font_color{background:yellow;text-align:center;color:white;}
|
|
</style>
|
|
<div style="padding-left: 200px;">
|
|
<div id='out'>
|
|
<p style="padding-left: 100px;padding-bottom: 10px;font-size: 14px;padding-top: 10px;">云化部署中....</p>
|
|
<div>
|
|
<div id="in" style="width:0%"></div>
|
|
<div>
|
|
<script type="text/javascript">
|
|
i=0;
|
|
$(function(){
|
|
ba=setInterval("begin()",60);//setInterval 返回的是一个全局变量,一个间隔数值.这个数值是表示调用setInterval的次数
|
|
});
|
|
function begin()
|
|
{
|
|
i+=1;
|
|
if(i<=100)
|
|
{
|
|
document.getElementById("in").style.width="";
|
|
document.getElementById("in").innerHTML="";}
|
|
else
|
|
{
|
|
clearInterval(ba);
|
|
$("#show_content_div").show();
|
|
$("#out").hide();
|
|
// document.getElementById("out").style.display="none";
|
|
// document.write("<span style='background:yellow;text-align:center;color:white;'>Successs!</span>");
|
|
}
|
|
}
|
|
</script>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="show_content_div" style="display: none;padding-top: 0px; ">
|
|
<p class="pl10 f14 "><span style="color: #7f7f7f;font-size: 14px; ">所部署服务的网址:</span>
|
|
<span><a href="http://rubyblog.forge.trustie.net/accounts/login" target="_Blank" style="color: #15BCCF;font-size: 14px;">http://rubyblog.forge.trustie.net/accounts/login</a></span></p>
|
|
</div> |