欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

css3一款3D字体带阴影效果的实现步骤

程序员文章站 2023-11-19 11:37:46
3D字体而且还带有阴影,这种效果想必大家只有认为一些高级的作图工具才可以实现的吧,css3的出现让这一切看似不可能的实现成为可能,接下来为大家介绍下3D字体带阴影效果的实现步骤,... 13-03-20...
效果图如下:
css3一款3D字体带阴影效果的实现步骤
源码如下:

复制代码
代码如下:

<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title> cssrex | drop shadow with css3 </title>
<link rel="stylesheet" type="text/css" href="style.css" media="screen" />
</head>
<body>
<div id="wrapper">
<h1>cssrex</h1>
<p>任何的异常都是throwable类,并且在它之下包含两个字类error / exception,而error仅在当在java虚拟机中发生动态连接失败或其它的定位失败的时候,java虚拟机抛出一个error对象。典型的简易程序不捕捉或抛出errors对象,你可能永远不会碰到需要实例化error的应用,那就让我们关心一下exception。
unchecked exception.:包括 error与runtimeexception. 这类异常都是runtimeexception的子类。
checked exception:除了error与runtimeexception,其他剩下的异常. 这类异常都是exception的子类 。在编译时在语法上必须处理的异常,因此必须在语法上以try..catch加以处理;</p>
</div><!-- /wrapper -->
</body>
</html>

style.css:

复制代码
代码如下:

body{
background:#d5d5d5;
}
#wrapper{
width:960px;
min-height:500px;
padding:50px 10px 0 10px;
margin:0 auto;
text-align:center;
}
#wrapper h1{
font:normal 60pt arial;
color:#ffffff;
text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15);
}
#wrapper p{
font:normal 40pt arial;
color:#ffffff;
text-shadow: 0 1px 0 #ccc,
0 2px 0 #c9c9c9,
0 3px 0 #bbb,
0 4px 0 #b9b9b9,
0 5px 0 #aaa,
0 6px 1px rgba(0,0,0,.1),
0 0 5px rgba(0,0,0,.1),
0 1px 3px rgba(0,0,0,.3),
0 3px 5px rgba(0,0,0,.2),
0 5px 10px rgba(0,0,0,.25),
0 10px 10px rgba(0,0,0,.2),
0 20px 20px rgba(0,0,0,.15);
}