我在评论中写了我的尝试,但也许我会得到支持,所以我也会在答案中写出来。:D。
var source = [0, 0], faktor = [10, 20];
source 是光应该在的位置,faktor 是阴影的 faktor([0] 表示阴影位置,[1] 表示模糊)。
function addShadows() {
var i, j, position, sizeE, distance; for(i=0,j=arguments.length;i<j;++i) {
position = offset(arguments[i]); // Get position from element
sizeE = size(arguments[i]); // Get width and height from element
distance = parseInt(Math.sqrt(Math.pow(position[0] + sizeE[0] / 2 - source[0], 2) + Math.pow(position[1] + sizeE[1] / 2 - source[1], 2))) / faktor[1]; // calculate a distance for bluring (middle of element to source)
arguments[i].style.cssText += 'box-shadow: ' + ((position[0] + sizeE[0] - source[0]) / faktor[0]) + 'px ' + ((position[1] + sizeE[1] - source[1]) / faktor[0]) + 'px ' + distance + 'px #555555'; // add the shadow
}
}
该函数addShadows
将为所有参数添加阴影。
function getStyle(element, attribut) {
var style;
if(window.getComputedStyle) {
style = window.getComputedStyle(element, null);
} else {
style = element.currentStyle;
}
return style[attribut];
}
function offset(element) {
var pos = [parseInt(getStyle(element, 'border-top')), parseInt(getStyle(element, 'border-top'))];
while(element !== null) {
pos[0] += element.offsetLeft;
pos[1] += element.offsetTop;
element = element.offsetParent;
}
return pos;
}
function size(element) {
return [element.offsetWidth, element.offsetHeight];
}
function id(idE) {
return document.getElementById(idE);
}
上面的四个函数只是辅助函数。
JSfiddle:http: //jsfiddle.net/R5UbL/1/