公告
财富商城
积分规则
提问
发文
2019-05-25 08:46发布
看我几分像从前
How can I get this "opacity-fallback" to work in IE 8?
I only want to use pure Javascript, no CSS or jQuery.
http://jsfiddle.net/snabbdesign/LeLfB/11/
e.filter = "alpha(opacity:" + value * 100 + ")";
needs to be
e.style.filter = 'alpha(opacity=' + value*100 + ')';
notice style and the =
style
=
最多设置5个标签!
needs to be
notice
style
and the=