WPF的Effect效果

一、阴影效果(DropShadowEffect)

        <TextBlock Text="阴影效果" FontSize="" Canvas.Top="">
<TextBlock.Effect>
<DropShadowEffect Color="Black" BlurRadius=""></DropShadowEffect>
</TextBlock.Effect>
</TextBlock>

属性:

Color                    阴影的颜色

ShadowDepth      确定阴影离开内容的距离,0的时候是晕圈

Opacity                阴影的透明效果,取值0~1

Direction              阴影相对于内容的方向,取值0~360,0时在右侧,数值增加,逆时针转动

BlurRadius           模糊半径,以像素为单位的正直,标识模糊开始处到边缘的距离

二、BlurEffect  模糊效果

        <TextBlock Padding="" Text="设置模糊" FontSize="" Background="#999">
<TextBlock.Effect>
<BlurEffect Radius=""></BlurEffect>
</TextBlock.Effect>
</TextBlock>

BitmapEffect位图效果是简单的像素处理操作。它可以呈现下面几种特殊效果。

BevelBitmapEffect        凹凸效果
            BlurBitmapEffect         模糊效果
            DropShadowBitmapEffect投影效果
            EmbossBitmapEffect     浮雕效果
            OuterGlowBitmapEffect   颜色光晕效果

上一篇:CSS3+HTML5实现块阴影与文字阴影


下一篇:HTML连载70-相片墙、盒子阴影和文字阴影