處理過程中頁面遮擋的技術

2021-05-22 23:56:53 字數 1545 閱讀 3156

在程式中定義

div,用

div進行遮擋。

在專案中使用**:

<

divid

="laymap"

style

="height: 500px; margin-right: 3px; margin-left: 3px;border-color:inherit; background-color:blue;">

div>

<

divid

="laymessage">

<

iframe

id="maploading"

name

="maploading"

src="maploading.aspx"

frameborder

="0"

height

="100%"

width

="100%">

iframe

>

div>

在處理過程開始的時候呼叫以下**進行遮擋:

varobj = document.getelementbyid("laymessage");

obj.style.display = "";

或者obj.style.display = "

block";

處理過程結束後呼叫以下**實現撤銷遮擋:

varobj = document.getelementbyid("laymessage");

obj.style.display = "none";

遮擋的時候,常用的有兩種方法。 1、

設定div

背景顏色並且設定其他的

css相關資訊。

<

divid

="display"

style

="position: absolute; display: block; z-index: 100; left: 0;

text-align: center; vertical-align: middle; top: 0; width: 100%; height: 758px;

background-color: gray; filter: alpha(opacity=10); font-size: 24;">

div>2、在

div中設定

iframe

,在iframe

設定的頁面中設定想要的或者其他資訊。

<

divid

="laymessage">

<

iframe

id="maploading"

name

="maploading"

src="maploading.aspx"

frameborder

="0"

height

="100%"

width

="100%">

iframe

>

div>

iframe呼叫的頁面中新增image標籤,該image指向位址

IT專案管理過程中的方法 工具 技術

工欲善其事,必先利其器。而對於乙個軟體開發專案,最重要的器就是方法,工具和技術。而這三要素中重要的又是方 方法是基礎,工具和技術更多是我們根據方 選擇的實現手段,是輔助要素。知己知彼,百戰百勝。乙個軟體專案也一樣,從專案一開始就應該分析清楚專案自身的特點,因地制宜,因時制宜的採用不同的方 和工具技術...

Hadoop中mapReduce處理過程詳解

為了說明這個問題,我們使用wordcount的處理過程來進行演示,演示圖如下所示 分析上圖 1.輸入分片 input split 在進行map計算之前,mapreduce會根據輸入檔案計算輸入分片 input split 每個輸入分片 input split 針對乙個map任務,輸入分片 input...

spring mvc 中 請求處理過程

spring mvc 中 請求處理過程 url初始化過程 override public void dowith method method throws illegalargumentexception,illegalacces ception reflectionutils.user decla...