cssSandpaper CSS3盒阴影实例页面

展示

回到相关文章 >>
-sand-box-shadow: 15px 15px #ffcccc;
此对象会有模糊圆角效果,在IE下则没有!

-sand-box-shadow: -5px -5px 5px black;
-sand-box-shadow: 15px 5px green;

代码

CSS代码:
#o1 {
	position: absolute;
	top: 25px;
	left: 25px;
	border: solid 1px black;
	position: absolute;
	width: 400px;
	height: 100px;
	padding: 10px;
	-sand-box-shadow: 15px 15px #ffcccc;
	background-color: #ffffcc;
}
#o2 {
	position: absolute;
	top: 10em;
	left: 33em;
	background-color: red;
	width: 200px;
	height: 302px;
	padding: 20px;
	-sand-box-shadow: -5px -5px 5px black;
	background-image: gradient(linear, center top, center bottom, from(#ffffff),
		 to(#ccccff));
}
.relative {
	position: relative;
	top: 100px;
	left: 100px;
}
#o3 {
	position: absolute;
	top: 300px;
	left: 122px;
	background-color: blue;
	color: white;
	font-weight: bold;
	-sand-box-shadow: 15px 5px green;
	width: 200px;
	height: 200px;
	position: relative;
	left: 400px;
	padding: 10px;
}
            
HTML代码:
<div id="o1">-sand-box-shadow: 15px 15px #ffcccc;</div>        
<div id="o2">
   此对象会有模糊圆角效果,在IE下则没有!<br /><br />
    -sand-box-shadow: -5px -5px 5px black;       
</div>
<div id="o3">-sand-box-shadow: 15px 5px green;</div>
            
JS代码:
<script type="text/javascript" src="../js/cssQuery-p.js"></script>
<script type="text/javascript" src="../js/sylvester.js"></script>
<script type="text/javascript" src="../js/cssSandpaper.js"></script>