解决ie阴影的兼容性

box-shadow:0px 0px 10px #aba25b;
-webkit-box-shadow:0px 0px 10px #aba25b;
-moz-box-shadow:0px 0px 10px #aba25b;
    behavior:url(../css/biz/ie-css3.htc);

插入下边插件

--Do not remove this if you are using--
Original Author: Remiz Rahnas
Original Author URL: http://www.htmlremix.com
Published date: 2008/09/24

Changes by Nick Fetchak:
- IE8 standards mode compatibility
- VML elements now positioned behind original box rather than inside of it - should be less prone to breakage
- Added partial support for ‘box-shadow‘ style
- Checks for VML support before doing anything
- Updates VML element size and position via timer and also via window resize event
- lots of other small things
Published date : 2010/03/14
http://fetchak.com/ie-css3

Thanks to TheBrightLines.com (http://www.thebrightlines.com/2009/12/03/using-ies-filter-in-a-cross-browser-way) for enlightening me about the DropShadow filter

<public:attach event="ondocumentready" onevent="ondocumentready(‘v08vnSVo78t4JfjH‘)" />
<script type="text/javascript">

timer_length = 200; // Milliseconds
border_opacity = false; // Use opacity on borders of rounded-corner elements? Note: This causes antialiasing issues

// supportsVml() borrowed from http://stackoverflow.com/questions/654112/how-do-you-detect-support-for-vml-or-svg-in-a-browser
function supportsVml() {
	if (typeof supportsVml.supported == "undefined") {
		var a = document.body.appendChild(document.createElement(‘div‘));
		a.innerHTML = ‘<v:shape id="vml_flag1" adj="1" />‘;
		var b = a.firstChild;
		b.style.behavior = "url(#default#VML)";
		supportsVml.supported = b ? typeof b.adj == "object": true;
		a.parentNode.removeChild(a);
	}
	return supportsVml.supported
}

// findPos() borrowed from http://www.quirksmode.org/js/findpos.html
function findPos(obj) {
	var curleft = curtop = 0;

	if (obj.offsetParent) {
		do {
			curleft += obj.offsetLeft;
			curtop += obj.offsetTop;
		} while (obj = obj.offsetParent);
	}

	return({
		‘x‘: curleft,
		‘y‘: curtop
	});
}

function createBoxShadow(element, vml_parent) {
	var style = element.currentStyle[‘iecss3-box-shadow‘] || element.currentStyle[‘-moz-box-shadow‘] || element.currentStyle[‘-webkit-box-shadow‘] || element.currentStyle[‘box-shadow‘] || ‘‘;
	var match = style.match(/^(\d+)px (\d+)px (\d+)px/);
	if (!match) { return(false); }

	var shadow = document.createElement(‘v:roundrect‘);
	shadow.userAttrs = {
		‘x‘: parseInt(RegExp.$1 || 0),
		‘y‘: parseInt(RegExp.$2 || 0),
		‘radius‘: parseInt(RegExp.$3 || 0) / 2
	};
	shadow.position_offset = {
		‘y‘: (0 - vml_parent.pos_ieCSS3.y - shadow.userAttrs.radius + shadow.userAttrs.y),
		‘x‘: (0 - vml_parent.pos_ieCSS3.x - shadow.userAttrs.radius + shadow.userAttrs.x)
	};
	shadow.size_offset = {
		‘width‘: 0,
		‘height‘: 0
	};
	shadow.arcsize = element.arcSize +‘px‘;
	shadow.style.display = ‘block‘;
	shadow.style.position = ‘absolute‘;
	shadow.style.top = (element.pos_ieCSS3.y + shadow.position_offset.y) +‘px‘;
	shadow.style.left = (element.pos_ieCSS3.x + shadow.position_offset.x) +‘px‘;
	shadow.style.width = element.offsetWidth +‘px‘;
	shadow.style.height = element.offsetHeight +‘px‘;
	shadow.style.antialias = true;
	shadow.className = ‘vml_box_shadow‘;
	shadow.style.zIndex = element.zIndex - 1;
	shadow.style.filter = ‘progid:DXImageTransform.Microsoft.Blur(pixelRadius=‘+ shadow.userAttrs.radius +‘,makeShadow=true,shadowOpacity=‘+ element.opacity +‘)‘;

	element.parentNode.appendChild(shadow);
	//element.parentNode.insertBefore(shadow, element.element);

	// For window resizing
	element.vml.push(shadow);

	return(true);
}

function createBorderRect(element, vml_parent) {
	if (isNaN(element.borderRadius)) { return(false); }

	element.style.background = ‘transparent‘;
	element.style.borderColor = ‘transparent‘;

	var rect = document.createElement(‘v:roundrect‘);
	rect.position_offset = {
		‘y‘: (0.5 * element.strokeWeight) - vml_parent.pos_ieCSS3.y,
		‘x‘: (0.5 * element.strokeWeight) - vml_parent.pos_ieCSS3.x
	};
	rect.size_offset = {
		‘width‘: 0 - element.strokeWeight,
		‘height‘: 0 - element.strokeWeight
	};
	rect.arcsize = element.arcSize +‘px‘;
	rect.strokeColor = element.strokeColor;
	rect.strokeWeight = element.strokeWeight +‘px‘;
	rect.stroked = element.stroked;
	rect.className = ‘vml_border_radius‘;
	rect.style.display = ‘block‘;
	rect.style.position = ‘absolute‘;
	rect.style.top = (element.pos_ieCSS3.y + rect.position_offset.y) +‘px‘;
	rect.style.left = (element.pos_ieCSS3.x + rect.position_offset.x) +‘px‘;
	rect.style.width = (element.offsetWidth + rect.size_offset.width) +‘px‘;
	rect.style.height = (element.offsetHeight + rect.size_offset.height) +‘px‘;
	rect.style.antialias = true;
	rect.style.zIndex = element.zIndex - 1;

	if (border_opacity && (element.opacity < 1)) {
		rect.style.filter = ‘progid:DXImageTransform.Microsoft.Alpha(Opacity=‘+ parseFloat(element.opacity * 100) +‘)‘;
	}

	var fill = document.createElement(‘v:fill‘);
	fill.color = element.fillColor;
	fill.src = element.fillSrc;
	fill.className = ‘vml_border_radius_fill‘;
	fill.type = ‘tile‘;
	fill.opacity = element.opacity;

	// Hack: IE6 doesn‘t support transparent borders, use padding to offset original element
	isIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	if (isIE6 && (element.strokeWeight > 0)) {
		element.style.borderStyle = ‘none‘;
		element.style.paddingTop = parseInt(element.currentStyle.paddingTop || 0) + element.strokeWeight;
		element.style.paddingBottom = parseInt(element.currentStyle.paddingBottom || 0) + element.strokeWeight;
	}

	rect.appendChild(fill);
	element.parentNode.appendChild(rect);
	//element.parentNode.insertBefore(rect, element.element);

	// For window resizing
	element.vml.push(rect);

	return(true);
}

function createTextShadow(element, vml_parent) {
	if (!element.textShadow) { return(false); }

	var match = element.textShadow.match(/^(\d+)px (\d+)px (\d+)px (#?\w+)/);
	if (!match) { return(false); }

	//var shadow = document.createElement(‘span‘);
	var shadow = element.cloneNode(true);
	var radius = parseInt(RegExp.$3 || 0);
	shadow.userAttrs = {
		‘x‘: parseInt(RegExp.$1 || 0) - (radius),
		‘y‘: parseInt(RegExp.$2 || 0) - (radius),
		‘radius‘: radius / 2,
		‘color‘: (RegExp.$4 || ‘#000‘)
	};
	shadow.position_offset = {
		‘y‘: (0 - vml_parent.pos_ieCSS3.y + shadow.userAttrs.y),
		‘x‘: (0 - vml_parent.pos_ieCSS3.x + shadow.userAttrs.x)
	};
	shadow.size_offset = {
		‘width‘: 0,
		‘height‘: 0
	};
	shadow.style.color = shadow.userAttrs.color;
	shadow.style.position = ‘absolute‘;
	shadow.style.top = (element.pos_ieCSS3.y + shadow.position_offset.y) +‘px‘;
	shadow.style.left = (element.pos_ieCSS3.x + shadow.position_offset.x) +‘px‘;
	shadow.style.antialias = true;
	shadow.style.behavior = null;
	shadow.className = ‘ieCSS3_text_shadow‘;
	shadow.innerHTML = element.innerHTML;
	// For some reason it only looks right with opacity at 75%
	shadow.style.filter = ‘		progid:DXImageTransform.Microsoft.Alpha(Opacity=75)		progid:DXImageTransform.Microsoft.Blur(pixelRadius=‘+ shadow.userAttrs.radius +‘,makeShadow=false,shadowOpacity=100)	‘;

	var clone = element.cloneNode(true);
	clone.position_offset = {
		‘y‘: (0 - vml_parent.pos_ieCSS3.y),
		‘x‘: (0 - vml_parent.pos_ieCSS3.x)
	};
	clone.size_offset = {
		‘width‘: 0,
		‘height‘: 0
	};
	clone.style.behavior = null;
	clone.style.position = ‘absolute‘;
	clone.style.top = (element.pos_ieCSS3.y + clone.position_offset.y) +‘px‘;
	clone.style.left = (element.pos_ieCSS3.x + clone.position_offset.x) +‘px‘;
	clone.className = ‘ieCSS3_text_shadow‘;

	element.parentNode.appendChild(shadow);
	element.parentNode.appendChild(clone);

	element.style.visibility = ‘hidden‘;

	// For window resizing
	element.vml.push(clone);
	element.vml.push(shadow);

	return(true);
}

function ondocumentready(classID) {
	if (!supportsVml()) { return(false); }

  if (this.className.match(classID)) { return(false); }
	this.className = this.className.concat(‘ ‘, classID);

	// Add a namespace for VML (IE8 requires it)
	if (!document.namespaces.v) { document.namespaces.add("v", "urn:schemas-microsoft-com:vml"); }

	// Check to see if we‘ve run once before on this page
	if (typeof(window.ieCSS3) == ‘undefined‘) {
		// Create global ieCSS3 object
		window.ieCSS3 = {
			‘vmlified_elements‘: new Array(),
			‘update_timer‘: setInterval(updatePositionAndSize, timer_length)
		};

		if (typeof(window.onresize) == ‘function‘) { window.ieCSS3.previous_onresize = window.onresize; }

		// Attach window resize event
		window.onresize = updatePositionAndSize;
	}

	// These attrs are for the script and have no meaning to the browser:
	this.borderRadius = parseInt(this.currentStyle[‘iecss3-border-radius‘] ||
	                             this.currentStyle[‘-moz-border-radius‘] ||
	                             this.currentStyle[‘-webkit-border-radius‘] ||
	                             this.currentStyle[‘border-radius‘] ||
	                             this.currentStyle[‘-khtml-border-radius‘]);
	this.arcSize = Math.min(this.borderRadius / Math.min(this.offsetWidth, this.offsetHeight), 1);
	this.fillColor = this.currentStyle.backgroundColor;
	this.fillSrc = this.currentStyle.backgroundImage.replace(/^url\("(.+)"\)$/, ‘$1‘);
	this.strokeColor = this.currentStyle.borderColor;
	this.strokeWeight = parseInt(this.currentStyle.borderWidth);
	this.stroked = ‘true‘;
	if (isNaN(this.strokeWeight) || (this.strokeWeight == 0)) {
		this.strokeWeight = 0;
		this.strokeColor = fillColor;
		this.stroked = ‘false‘;
	}
	this.opacity = parseFloat(this.currentStyle.opacity || 1);
	this.textShadow = this.currentStyle[‘text-shadow‘];

	this.element.vml = new Array();
	this.zIndex = parseInt(this.currentStyle.zIndex);
	if (isNaN(this.zIndex)) { this.zIndex = 0; }

	// Find which element provides position:relative for the target element (default to BODY)
	vml_parent = this;
	var limit = 100, i = 0;
	do {
		vml_parent = vml_parent.parentElement;
		i++;
		if (i >= limit) { return(false); }
	} while ((typeof(vml_parent) != ‘undefined‘) && (vml_parent.currentStyle.position != ‘relative‘) && (vml_parent.tagName != ‘BODY‘));

	vml_parent.pos_ieCSS3 = findPos(vml_parent);
	this.pos_ieCSS3 = findPos(this);

	var rv1 = createBoxShadow(this, vml_parent);
	var rv2 = createBorderRect(this, vml_parent);
	var rv3 = createTextShadow(this, vml_parent);
	if (rv1 || rv2 || rv3) { window.ieCSS3.vmlified_elements.push(this.element); }

	if (typeof(vml_parent.document.ieCSS3_stylesheet) == ‘undefined‘) {
		vml_parent.document.ieCSS3_stylesheet = vml_parent.document.createStyleSheet();
		vml_parent.document.ieCSS3_stylesheet.addRule("v\\:roundrect", "behavior: url(#default#VML)");
		vml_parent.document.ieCSS3_stylesheet.addRule("v\\:fill", "behavior: url(#default#VML)");
		// Compatibility with IE7.js
		vml_parent.document.ieCSS3_stylesheet.ie7 = true;
	}
}

function updatePositionAndSize() {
	if (typeof(window.ieCSS3.vmlified_elements) != ‘object‘) { return(false); }

	for (var i in window.ieCSS3.vmlified_elements) {
		var el = window.ieCSS3.vmlified_elements[i];

		if (typeof(el.vml) != ‘object‘) { continue; }

		for (var z in el.vml) {
			//var parent_pos = findPos(el.vml[z].parentNode);
			var new_pos = findPos(el);
			new_pos.x = (new_pos.x + el.vml[z].position_offset.x) + ‘px‘;
			new_pos.y = (new_pos.y + el.vml[z].position_offset.y) + ‘px‘;
			if (el.vml[z].style.left != new_pos.x) { el.vml[z].style.left = new_pos.x; }
			if (el.vml[z].style.top != new_pos.y) { el.vml[z].style.top = new_pos.y; }

			var new_size = {
				‘width‘: parseInt(el.offsetWidth + el.vml[z].size_offset.width),
				‘height‘: parseInt(el.offsetHeight + el.vml[z].size_offset.height)
			}
			if (el.vml[z].offsetWidth != new_size.width) { el.vml[z].style.width = new_size.width +‘px‘; }
			if (el.vml[z].offsetHeight != new_size.height) { el.vml[z].style.height = new_size.height +‘px‘; }
		}
	}

	if (event && (event.type == ‘resize‘) && typeof(window.ieCSS3.previous_onresize) == ‘function‘) { window.ieCSS3.previous_onresize(); }
}
</script>
时间: 2024-10-08 06:27:05

解决ie阴影的兼容性的相关文章

一条代码解决各种IE浏览器兼容性问题

在网站开发中不免因为各种兼容问题苦恼,针对兼容问题,其实IE给出了解决方案Google也给出了解决方案百度也应用了这种方案去解决IE的兼容问题 百度源代码如下 <!Doctype html><html xmlns=http://www.w3.org/1999/xhtml xmlns:bd=http://www.baidu.com/2010/xbdml>;<head><meta http-equiv=Content-Type content=“text/html;c

开发网站时解决360浏览器的兼容性问题,兼容模式打不开,让网页默认为极速模式打开

360浏览器打开网页默认是兼容模式,导致有些网页打不开, 可以在网页头部加上代码,默认改为为极速模式打开,就正常了: <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" />

解决video标签的兼容性

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>播放器</title> </head> <body > <video autoplay="autoplay" controls="controls" width="480px" height="27

AppCan与Testin联合解决Android 5.0兼容性问题

2014年10月16日Google发布全新的Android 5.0系统,为用户带来新鲜功能和清新界面的同时,也给App适配带来了新的难题.当App遭遇5.0,您是否遇到过启动失败.控件无法兼容.迷一样的闪退?那么还有更多您还没有发现的兼容问题呢? 为了让广大开发者的应用更好服务用户,AppCan联合Testin共同为开发者扫清安卓5.0及以上版本不兼容的问题. 使用AppCan提供的云测入口: http://newdocx.appcan.cn/index.html?templateId=500

解决SVG跨浏览器兼容性问题

Raphael JS:SVG/VML+JS实现跨浏览器的矢量图形实现方案 http://blog.csdn.net/tiewen/article/details/8535748 SVG那些小事儿 http://www.w3cfuns.com/article-5601506-1-1.html Raphaël—JavaScript Library http://raphaeljs.com/ Raphael JS:SVG/VML+JS实现跨浏览器的矢量图形实现方案

常见浏览器兼容性问题与解决方式

所谓的浏览器兼容性问题,是指由于不同的浏览器对同一段代码有不同的解析,造成页面显示效果不统一的情况.在大多数情况下,我们的需求是,不管用户用什么浏览器来查看我们的站点或者登陆我们的系统,都应该是统一的显示效果.所以浏览器的兼容性问题是前端开发者常常会碰到和必需要解决的问题. 在学习浏览器兼容性之前,我想把前端开发者划分为两类: 第一类是精确依照设计图开发的前端开发者,能够说是精确到1px的,他们非常easy就会发现设计图的不足,而且在非常少的情况下会碰到浏览器的兼容性问题,而这些问题往往都死浏览

各类网页兼容性及解决

所谓的浏览器兼容性问题,是指因为不同的浏览器对同一段代码有不同的解析,造成页面显示效果不统一的情况.在大多数情况下,我们的需求是,无论用户用什么浏览器来查看我们的网站或者登陆我们的系统,都应该是统一的显示效果.所以浏览器的兼容性问题是前端开发人员经常会碰到和必须要解决的问题.在学习浏览器兼容性之前,我想把前端开发人员划分为两类:第一类是精确按照设计图开发的前端开发人员,可以说是精确到1px的,他们很容易就会发现设计图的不足,并且在很少的情况下会碰到浏览器的兼容性问题,而这些问题往往都是浏览器的b

通过修改manifest文件来解决Vista/Win7/Win8下应用程序兼容性问题

在Vista/Win7/Win8下,有一个系统兼容性助手功能,在安装程序安装完成或卸载完成后,可能会弹出应用程序兼容性助手相关的提示,提示程序可能安装不正确,很是烦人.如下图所示: 事实上,我们的程序兼容性是没问题的,只不过是在程序中没有指定应用程序兼容的操作系统,所以导致了这些问题.      VS2008和VS2010可以生成一个与exe应用程序相关联的.manifest文件,微软已经为该文件中添加了一个新的<compatibility> 字段, 这个字段用来指定你的应用程序可以兼容的操作

border-radius,box-shadow兼容性解决办法

css3 border-radius不支持IE8/IE7的四种解决方法 标签: cssborder-radius兼容性   时间:2016-07-18 css3 border-radius用于设置HTML元素的圆角效果,但只有IE9.chorme及firefox浏览器支持该属性,IE8及以下浏览器不兼容也不支持border-radius属性,本文章向大家介绍如何解决IE8兼容border-radius属性的方法,需要的朋友可以参考一下. border-radius是css3的属性,因此比较早的浏