JavaScript CSS 修改學習第四章 透明度設定

來源:互聯網
上載者:User

這裡是測試頁。
在JavaScript裡面設定透明度
我用下面的代碼來設定透明度:

複製代碼 代碼如下:function setOpacity(value) {
testObj.style.opacity = value/10;
testObj.style.filter = 'alpha(opacity=' + value*10 + ')';
}

在Mozilla和Safari裡使用opacity,IE使用filter。value的值從0到10。 測試結果
IE說明:一個元素必須有一個layout來執行filter。並且IE6對於元素的left margin有很奇怪的表現。

翻譯地址:http://www.quirksmode.org/js/opacity.html

轉載請保留以下資訊
作者:北玉(tw:@rehawk)

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.