<!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>
<title></title>
<style type="text/css">
/*<![CDATA[*/
#text
{
text-shadow:2px 2px 0px orange
}
#text1
{
text-shadow:2px 2px 5px orange
}
#text2
{
text-shadow:2px 2px 5px orange,-2px 2px 5px green
}
/*]]>*/
</style>
</head>
<body>
<div id="text">
没有模糊效果
</div>
<div id="text1">
有模糊效果
</div>
<div id="text2">
阴影叠加
</div>
</body>
</html>
CSS3的文字阴影—text-shadow
IE中:filter:shadow(Color=颜色值,Direction=数值,Strength=数值)}
.demo {text-shadow: 0 0 20px redfilter:shadow(Color=#0000ff,Direction=10,Strength=10)}模拟3D环境,根据摄像机位置、角度,计算物体每个顶点的投影,隐射到2D平面。想要了解更详细的,建议研究一下开源3D项目,如three.js, http://threejs.org/ ,里面有Canvas渲染器是你要的东西。欢迎分享,转载请注明来源:内存溢出
评论列表(0条)