如何更改SVG文本?

时间:2015-03-12 11:01:26

标签: html svg

我是svg概念的新手。我需要更改用SVG编写的文本。文字是“Isadora”。我写作主题的代码如下:

 <header class="ip-header">
            <div class="ip-logo"></div>
            <div class="ip-loader">
                <div id="swiffycontainer" style="width: 550px; height: 400px; margin:0 auto;"></div>
                <svg style="display:none;" class="ip-inner" viewBox="0 0 80 80">
                    <path class="ip-loader-circlebg" d="M40,10C57.351,10,71,23.649,71,40.5S57.351,71,40.5,71 S10,57.351,10,40.5S23.649,10,40.5,10z"/>
                    <path id="ip-loader-circle" class="ip-loader-circle" d="M40,10C57.351,10,71,23.649,71,40.5S57.351,71,40.5,71 S10,57.351,10,40.5S23.649,10,40.5,10z"/>

                </svg>


                <script>
                  var stage = new swiffy.Stage(document.getElementById('swiffycontainer'),
                      swiffyobject, {  });
                  stage.start();
                </script>
            </div>
        </header>

我想将文本“isadora”更改为“The School Management”。

1 个答案:

答案 0 :(得分:0)

看起来您的SVG不包含任何文本(甚至不包含路径),但用于显示使用Google Swiffy的内容,它在服务器端将SWF转换为JSON,然后在浏览器中呈现输出

我们只能猜测,因为您的问题不提供该信息,但如果您使用isadora文字显示SWF,则需要编辑该SWF,除非您想要更改所有内容。