jquery半透明设置实现代码
本文导语: 例子,jquery实现的半透明效果。 代码示例: function setOpacity(eles){ $(eles).each(function(){ if($.browser.msie){ $(this).clone().empty().insertAfter($(this)) .css({"position":"relative","top":-$(this).height()}) .css("z-index",-1).addClass("opacityBgInIE"); $(this).css("...
例子,jquery实现的半透明效果。
function setOpacity(eles){
$(eles).each(function(){
if($.browser.msie){
$(this).clone().empty().insertAfter($(this))
.css({"position":"relative","top":-$(this).height()})
.css("z-index",-1).addClass("opacityBgInIE");
$(this).css("background","transparent");
$(this).find('.panel-header,.panel-body').css("background","transparent");
}else{
$(this).addClass("opacitysetting");
$(this).find('.panel-header,.panel-body').css("background","none");
}
});
}
使用方式:
setOpacity("#mainpartopacity,#contents,#frameAccordionMenu");