Prototype - setOpacity() 方法



此方法设置元素的可视不透明度,同时解决在不同的浏览器中的差异。

不透明度参数应该是一个浮点数,其中值 0 为完全透明,1 为完全不透明。

Element.setStyle 方法内部使用 setOpacity 来设置不透明度。

语法

element.setOpacity(opacity);

返回值

返回一个 HTML 元素。

示例

<html>
   <head>
      <title>Prototype examples</title>
      <script type = "text/javascript" src = "/javascript/prototype.js"></script>
      
      <script>
         function reduceOpacity() {
            $('test').setOpacity( 0.5 );
            // This is equivalent to 
            // Element.setStyle({ opacity: 0.5 });
         }
      </script>
   </head>

   <body">
      <p id = "test">Click the button to see the result.</p>
      <input type = "button" value = "Click" onclick = "reduceOpacity();"/>
   </body>
</html>

输出

prototype_element_object.htm
广告