• svg文字渐变:颜色+描边+阴影(vue实现)



    实现代码借鉴于《CSS和SVG实现文字渐变、描边、投影》,本文为综合代码

    1、实现效果

    在这里插入图片描述

    2、父组件

    <template>
      <div style="background:rgb(240 240 240)">
          <SvgWord title="爱上现在,梦见未来!">SvgWord>
      div>
    template>
    
    <script>
    // 导入需要的组件
    import SvgWord from '@/components/svgword.vue'
    
    export default {
      // 注册组件
      components: { SvgWord },
    
    }
    script>
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    3、子组件

    <template>
        <div class="svgPra">
            <svg class="svgStyle">
                <defs>
                    
                    <linearGradient id="gradient" x1="0" y1="0" x2="1" y2="1">
                        <stop offset="0%" stop-color="#b5ffff" />
                        <stop offset="100%" stop-color="#fca5f1" />
                    linearGradient>
                    
                    
                    <linearGradient id="gradientStroke" x1="0" y1="0" x2="1" y2="1">
                        <stop offset="0%" stop-color="#00ffee" />
                        <stop offset="100%" stop-color="#d585ff" />
                    linearGradient>
                    
                    <filter id="shadow">
                        <feDropShadow dx="5" dy="5" stdDeviation="3" flood-color="#b9c4c4" />
                    filter>
                defs>
                <text class="text" x="50%" y="50%">{{title}}text>
            svg>
        div>
    template>
    <script>
    export default {
        props: ['title'],
    }
    script>
    <style lang="less" scoped>
    .svgPra {
        // 边框投影
        width: 600px;
        height: 110px;
        margin: 30px;
        border-radius: 15px;
        box-shadow: -5px -5px 10px rgb(255, 255, 255);
    
        .svgStyle {
            // 边框投影
            width: 600px;
            height: 110px;
            background: white;
            box-shadow: 5px 5px 10px #aaa;
            border-radius: 15px;
    
            .text {
                // 颜色填充
                fill: url(#gradient);
    
                // 方向居中
                text-anchor: middle;
                dominant-baseline: middle;
    
                font-size: 60px;
                font-weight: 900;
    
                // 描边
                stroke-width: 4px;
                stroke: url(#gradientStroke);
                paint-order: stroke;
    
                // 投影
                // 建议用这个,代码简单整洁;渐变方法:text-shadow: 5px 5px 6px #b9c4c4,5px 5px 6px red;
                // text-shadow: 5px 5px 6px #b9c4c4;  // 简洁
                // svg方法实现投影;渐变方法:filter: url(#shadow1)  url(#shadow2);
                filter: url(#shadow);
            }
        }
    }
    style>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
  • 相关阅读:
    Opencv基于文字检测去图片水印
    引擎入门 | Unity UI简介–第2部分(4)
    lxml基本使用
    Spring Retry方法重试
    研发必会-异步编程利器之CompletableFuture(含源码 中)
    react中受控组件与非受控组件
    多模态预训练模型指北——LayoutLM
    react18+Ts+V6最新实战项目来袭!
    使用nvm控制node版本踩坑及问题解决
    STP切换测试_组网实验
  • 原文地址:https://blog.csdn.net/sjp991012/article/details/126816091