zoukankan      html  css  js  c++  java
  • 特殊效果字体代码

    <style type="text/css">
    <!--

    body {background: url(back.gif);}

    .sample  {font-style: italic; font-family: arial black;
       font-size: 40px; font-weight: bold; cursor: hand;}

    #backgr2 { 200px; height: 70; background: black url(images/back1.jpg) center center no-repeat;}
    #backgr3 {}

    -->
    </style>
    <div class="webfx-main-body">
    <h2>3D Text</h2>

    This was made using one span with blur and then another one atop of it.


    <p onclick="alert(this.innerHTML)">
    <span class="sample"
    style=" 200px; height: 70; color: black; filter: Blur(Add=0, Direction=135, Strength=10);"
    >WebFX</span><span class="sample"
    style="position: relative; left: -201; top: -15; 200; color: #2984ff;">
    WebFX</span>

    <h2>Glass Text</h2>

    Same tecnique as above but both have alpha filters added.


    <p onclick="alert(this.innerHTML)">
    <span class="sample"
    style=" 200px; height: 70; color: lightskyblue; filter: Alpha(Opacity=60) Blur(Add=0, Direction=135, Strength=20);"
    >WebFX</span><span class="sample"
    style="position: relative; left: -201; top: -15; 200; color: lightskyblue; filter: Alpha(Opacity=60);"
    >WebFX</span>


    <h2>Inner Shadow</h2>

    First I added a mask() to remove the inside, then a shadow() was added. Since there is nothing inside the shadow
    is displayed inside. Then I removed the mask using chroma(). Before this I added the same text with a white color and
    the second text was moved above this using position: relative; left: -200px;

    <p onclick="alert(this.innerHTML)">
    <span class="sample"
    style=" 200px; height: 70; color: white;"
    >WebFX</span><span class="sample"
    style=" 200px; height: 70; position: relative; left: -200; filter: mask(color=red) shadow(direction=135) chroma(color=red);"
    >WebFX</span>


    <h2>Outline Text</h2>

    You could just add glow but it looks better if the glowing is placed on the inside. To do this
    you add mask, glow and chroma.


    <p onclick="alert(this.innerHTML)">
    <span class="sample" style=" 200px; height: 70; filter: mask(color=red) glow(color=black, strength=1) chroma(color=red);">WebFX</span>


    </div>

  • 相关阅读:
    vue使用CDN全局安装百度地图
    vue cli3使用webpack4打包优化
    vue使用axios提交formdata格式的数据
    windows、linux使用查看、杀死进程
    分离vue文件,方便后期维护
    vue:使用element-ui制作动态表格
    《从0到1学习Flink》—— Data Sink 介绍
    《从0到1学习Flink》—— Mac 上搭建 Flink 1.6.0 环境并构建运行简单程序入门
    《从0到1学习Flink》—— Flink 配置文件详解
    《从0到1学习Flink》—— Flink Data transformation(转换)
  • 原文地址:https://www.cnblogs.com/F-lower/p/3344269.html
Copyright © 2011-2022 走看看