禁用HTML元素

时间:2010-12-09 10:26:39

标签: javascript prototypejs scriptaculous

如何禁用页面?

我使用scriptaculous / prototype编写了以下代码。它只是将div移动到中心(实际上是100,100)。我想要禁用整个背景(所有元素),除了这个div。

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

1 个答案:

答案 0 :(得分:0)

我建议在div中覆盖其余元素,然后使用z-index将居中div移到顶部。与下面类似。

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