|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
可以增加更多的用户而不需要建立独立的版本。可以一次设计,随处发布。
效果:
3DText
以下是一个用了blur滤镜而另外一个没用的叠加效果
Ttop.cnTtop.cn
GlassText
这个是两个都用了alpha滤镜的效果
Ttop.cnTtop.cn
InnerShadow
这个是先用了一段红色的笔墨,再加了mask()滤镜,再用了shadow()滤镜,最初到场chroma()滤镜构成后一段字体,放在前一段笔墨的绝对left:-200px地位上构成的。
Ttop.cnTtop.cn
OutlineText
用mask,glowandchroma三个滤镜团结感化
Ttop.cn
与Marquee的完善分离
www.Ttop.cnwww.Ttop.cn
源代码:
<styletype="text/CSS">
<!--
.sample
font-style:italic;font-family:arialblack;font-size:40px;font-weight:bold;cursor:hand;
-->
</style>
<title>Css不朽的典范―3D笔墨殊效</title>
<div>
<h2>3DText</h2>
<p>以下是一个用了blur滤镜而另外一个没用的叠加效果</p>
<ponClick="alert(this.innerHTML)"><spanclass="sample"
style="width:200px;height:70;color:black;filter:Blur(Add=0,Direction=135,Strength=10);"
>Ttop.cn</span><spanclass="sample"
style="position:relative;left:-201;top:-15;width:200;color:#2984ff;">
Ttop.cn</span></p>
<h2>GlassText</h2>
<p>这个是两个都用了alpha滤镜的效果</p>
<ponClick="alert(this.innerHTML)"><spanclass="sample"
style="width:200px;height:70;color:lightskyblue;filter:Alpha(Opacity=60)Blur(Add=0,Direction=135,Strength=20);"
>Ttop.cn</span><spanclass="sample"
style="position:relative;left:-201;top:-15;width:200;color:lightskyblue;filter:Alpha(Opacity=60);"
>Ttop.cn</span></p>
<h2>InnerShadow</h2>
<p>这个是先用了一段红色的笔墨,再加了mask()滤镜,再用了shadow()滤镜,最初到场chroma()滤镜构成后一段字体,放在前一段笔墨的绝对left:
-200px地位上构成的。</p>
<ponClick="alert(this.innerHTML)"><spanclass="sample"
style="width:200px;height:70;color:white;"
>Ttop.cn</span><spanclass="sample"
style="width:200px;height:70;position:relative;left:-200;filter:mask(color=red)shadow(direction=135)chroma(color=red);"
>Ttop.cn</span></p>
<h2>OutlineText</h2>
<p>用mask,glowandchroma三个滤镜团结感化</p>
<ponClick="alert(this.innerHTML)"><spanclass="sample"style="width:200px;height:70;filter:mask(color=red)glow(color=black,strength=1)chroma(color=red);">Ttop.cn</span></p>
<h2>与Marquee的完善分离</h2>
<ponClick="alert(this.innerHTML)"><spanclass="sample"
style="width:320px;height:70;color:black;filter:Blur(Add=0,Direction=135,Strength=10);"
><marqueewidth:300height:70scrollamount="1"behavior="alternate"class="sample">www.Ttop.cn</marquee></span>
<spanclass="sample"
style="position:relative;left:-320;top:-15;width:320;color:#2984ff;">
<marqueewidth:320height:70scrollamount="1"behavior="alternate"class="sample">www.Ttop.cn</marquee></span></p>
</div>
在主页制作时采用CSS技术,可以有效地对页面的布局、字体、颜色、背景和其它效果实现更加精确的控制。 |
|