CSS里如何写投影
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS里如何写投影相关的知识,希望对你有一定的参考价值。
div+css如何写出类似PS里的投影效果
<!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> 参考技术A html5的新标准.shadow 你随便查下html5的shadow属性.会有更详细的解释
但是现在不支持IE浏览器.IE9以上可以..现在常用的投影都是用图片做出来的.在css里写background.实现的! 参考技术B .img
cursor:hand;
filter:alpha(Opacity=100,style=0)progid:DXImageTransform.Microsoft.DropShadow(color=#cccccc,offX=7,offY=6,positives=true);
border:#003300 1px inset;
width:200px;
height:200px;
嘿嘿,我经常用这个样式,你试试,记得要在图片那加 class=img
CSS CSS投影
以上是关于CSS里如何写投影的主要内容,如果未能解决你的问题,请参考以下文章