2010-12-09 76 views
0

如何禁用頁面?禁用HTML元素

我有一個使用scriptaculous/prototype編寫的以下代碼。它只是移動一個div到中心(實際爲100,100)。我希望整個背景(所有元素)被禁用,除了這個div。

new Effect.Move(element, {x:100,y:100,duration:1}); 
+1

這是什麼意思「禁用」?表單元素? – powtac 2010-12-09 13:08:06

回答

0

我會建議在div中覆蓋其他元素,然後使用z-index將居中div移動到最上。類似於下面。

#disableElements{ 
display:none; 
position:fixed; 
height:100%; 
width:100%; 
top:0; 
left:0; 
}