用css应该如何表示ps上的阴影

html-css041

用css应该如何表示ps上的阴影,第1张

颜色(color):rgb(0,0,0)

不透明度(opacity):10%

角度(Angle):投影的角度

距离(Distance):阴影的距离。根据角度和距离可以换算出CSS3阴影中的x-offset和y-offet。 x-offset = Distance * cos(180 -Angle) , y-offset = Distance * sin(180 - Angle)

扩展(Spread): 阴影的扩展大小。控制阴影实体颜色和虚化颜色的多少。 Spread * Size = 阴影中实体颜色的大小 。剩下的就是虚化的颜色。CSS3阴影 spread-radius = Spread * Size

大小(Size): 阴影的大小。在CSS3中 blur-radius + spread-radius = Size 即 blur-radius = Size - spread-radius

x-offset: 87 * cos(180°-(- 90°)) = 0px(87=Distance(ps上的距离),-90°=Angle(ps上的角度))

y-offset: 87 * sin(180°- (- 90°)) =-87px(同理,注意是sin,不是cos)

spread-radius: 0*73=0px(0=Spread(ps上的扩展),73=Size(ps上的大小))

blur-radius: 73-0=73px(73=Size(ps上的大小),0=spread-radius(上一行的数据))

color+opacity:rgba(0,0,0,.1) (.1就是10%,就是不透明度)

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

<head>

<meta http-equiv="Content-Type" content="text/html charset=gb2312" />

<title>Untitled Document</title>

<style type="text/css">

div#pic{

background: url(http://cache.soso.com/wenwen/i/nlogo_ask1.gif) left top

width: 151px

height: 47px

border: 1px solid #000000

}

div#shadow{

width: 151px

height: 47px

background: #CCCCCC /*阴影颜色*/

position: relative /*设置阴影图层的位置为相对定位*/

left: 5px

top: -44px

z-index: -1 /*把阴影图层置于最底层*/

}

</style>

</head>

<body>

<div id="pic"></div>

<div id="shadow"></div>

</body>

</html>