美文网首页
文字描边效果

文字描边效果

作者: 人穷脸丑小前端 | 来源:发表于2017-07-29 17:59 被阅读0次

简单描边

<h1>文字</h1>
<style>
    h1 {
        font-size: 10em;
        text-align: center;
        -webkit-text-fill-color: deepskyblue;
        -webkit-text-stroke: 3px red;
    }
</style>
效果图

渐变描边

主要是用到背景渐变的样式。

<h1>文字</h1>
<style>
    h1 {
        text-align: center;
        font-size: 10em;
        background: linear-gradient(0deg, #ff2e2b 20%, #de55ec 46%, #09E5C3 91%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: #fff;
        -webkit-text-stroke: 6px transparent;
    }
</style>
效果图

SVG多彩描边效果

<svg viewBox="0 0 1320 300">
    <!-- Symbol -->
    <symbol id="s-text">
        <text text-anchor="middle"
              x="50%" y="50%" dy=".35em">
            文字
        </text>
    </symbol>
    <!-- Duplicate symbols -->
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
</svg>
<style>
    body {
        background: #212121;
    }
    text{
        font-size: 10em;
    }
    .text {
        fill: none;
        stroke-width: 6;
        stroke-linejoin: round;
        stroke-dasharray: 25 75;
        stroke: #25f229;
        stroke-dashoffset: 0;
    }

    .text:nth-child(4n + 1) {
        stroke: #F2385A;
        stroke-dashoffset: 25;
        stroke-dasharray: 25 75;
    }

    .text:nth-child(4n + 2) {
        stroke: #F5A503;
        stroke-dashoffset: 50;
        stroke-dasharray: 25 75;
    }

    .text:nth-child(4n + 3) {
        stroke: #E9F1DF;
        stroke-dashoffset: 75;
        stroke-dasharray: 25 75;
    }
</style>
效果图

SVG动画霓虹灯效果

<svg viewBox="0 0 1320 300">
    <!-- Symbol -->
    <symbol id="s-text">
        <text text-anchor="middle"
              x="50%" y="50%" dy=".35em">
            文字
        </text>
    </symbol>
    <!-- Duplicate symbols -->
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
    <use xlink:href="#s-text" class="text"></use>
</svg>
<style>
    body {
        background: #212121;
    }
    text{
        font-size: 10em;
    }
.text {
        fill: none;
        stroke-width: 6;
        stroke-linejoin: round;
        stroke-dasharray: 40 360;
        stroke-dashoffset: 0;
        animation: stroke 7s infinite linear;
    }

    .text:nth-child(7n + 1) {
        stroke: #F2385A;
        animation-delay: -1s;
    }

    .text:nth-child(7n + 2) {
        stroke: #F5A503;
        animation-delay: -2s;
    }

    .text:nth-child(7n + 3) {
        stroke: #E9F1DF;
        animation-delay: -3s;
    }

    .text:nth-child(7n + 4) {
        stroke: #56D9CD;
        animation-delay: -4s;
    }

    .text:nth-child(7n + 5) {
        stroke: #3AA1BF;
        animation-delay: -5s;
    }

    .text:nth-child(7n + 6) {
        stroke: #8a54bf;
        animation-delay: -6s;
    }

    .text:nth-child(7n + 7) {
        stroke: #1fbf4c;
        animation-delay: -7s;
    }
  @keyframes stroke {
        100% {
            stroke-dashoffset: -400;
        }
    }
</style>
效果图

相关文章

  • ios 文字外描边效果

    设计提出文字描边效果,但是富文本自带的文字描边效果,是向文字内外同时描边 效果 所以需要自己实现,采用的方法是重写...

  • 文字描边效果

    简单描边 渐变描边 主要是用到背景渐变的样式。 SVG多彩描边效果 SVG动画霓虹灯效果

  • PS: 图层样式对文字的实际应用

    一、描边制作立体文字 ctrl+j(副本效果描边)→左击效果→创建图层→移到原文字下方(隐藏副本)→效果图层向下/...

  • 使用CSS给文字添加描边效果

    CSS如何实现文字描边效果?下面本篇文章就来给大家介绍一下使用CSS给文字添加描边效果的方法,希望对大家有所帮助。...

  • 文字描边

  • 文字描边

    效果: 描边完成了,喜欢就留个小❤️吧

  • ios开发文字内描边效果

    实现了外描边效果之后,产品问内描边好做吗,我说简单!简单个蛋! 因为苹果本身的描边效果,是双向描边,不是单侧的,见...

  • PPT文字描边效果大比拼

    看到文章标题你一定很纳闷,PPT文字描边效果有什么好说的,很简单啊,输入文字,点击右键,设置形状格式,选择文本效果...

  • UILabel 文字描边

    titleLabel.shadowColor= [UIColor blackColor]; titleLabel....

  • CSS文字描边

    直接上代码css代码:div { margin: 50px auto 100px; font-size: 100p...

网友评论

      本文标题:文字描边效果

      本文链接:https://www.haomeiwen.com/subject/etjclxtx.html