web-dev-qa-db-fra.com

Comment puis-je inclure une icône géniale de police dans mon svg?

J'ai un svg qui comprend des images:

<g><image id="myImage" class="myClass" x="12" y="15" width="10" height="10" xlink:href="/images/pic.png"/></g>

Comment remplacer cette ligne avec une icône géniale de police:

<g><i class="icon icon-cloud-download" x="12" y="15" width="10" height="10"></i></g>

ne semble pas fonctionner car l'image n'apparaît pas.

66
Brent

i n'est pas un SVG valide. Vous devez inclure le caractère réel qui affiche l'icône. Si vous jetez un oeil à la feuille de style de font awesome vous verrez ...

.icon-group:before                { content: "\f0c0"; }
.icon-link:before                 { content: "\f0c1"; }
.icon-cloud:before                { content: "\f0c2"; }
.icon-beaker:before               { content: "\f0c3"; }
.icon-cut:before                  { content: "\f0c4"; }
.icon-copy:before                 { content: "\f0c5"; }
.icon-paper-clip:before           { content: "\f0c6"; }
.icon-save:before                 { content: "\f0c7"; }
.icon-sign-blank:before           { content: "\f0c8"; }
.icon-reorder:before              { content: "\f0c9"; }
.icon-list-ul:before              { content: "\f0ca"; }
.icon-list-ol:before              { content: "\f0cb"; }
.icon-strikethrough:before        { content: "\f0cc"; }
.icon-underline:before            { content: "\f0cd"; }
.icon-table:before                { content: "\f0ce"; }

Mais ce sont des caractères Unicode encodés pour CSS. En SVG, vous devrez modifier la syntaxe de l'exemple \f040 à:

<g><text x="0" y="0">&#xf040;</text></g>

Et puis dans votre feuille de style ajoutez:

svg text {
   font-family: FontAwesome;
}
113
methodofaction

ma démo

<!DOCTYPE html>
<html>
  <head>
    <script src="http://d3js.org/d3.v3.min.js"></script>
    <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
    <meta charset="utf-8">
    <title>JS Bin</title>
  </head>
  <body>
    <div title="Code: 0xe800" class="the-icons span3">

      <H3>Standard using:</H3>
    <i class="fa fa-camera-retro fa-4x"></i>
    <br>
      <H3>SVG using:</H3>
  </body>
</html>

JS

var svg = d3.select("body")
  .append("svg")
  .attr("width", 250)
  .attr("height", 250);

svg.append("text")
  .attr("x",0)
  .attr("y",70)
  .attr("font-family","FontAwesome")
  .attr('font-size', function(d) { return '70px';} )
  .text(function(d) { return '\uf083'; }); 
21
WebBrother