我正在寻找中间有一个字体图标和下面的股票标签的圆圈的节点。这(http://jsbin.com/hiqega/3/edit?js,output)非常接近我正在寻找的内容,只是我需要传递字体名称和要使用的图标代码。
function nodeImage(color, icon, font)
{
var svg = '<svg xmlns="http://www.w3.org/2000/svg" ' +
'width="120" height="120" viewPort="0 0 120 120">' +
'<ellipse ry="55" rx="55" cy="60" cx="60" ' +
'style="fill:' + color + ';stroke:black;stroke-opacity:.5;stroke-width:4;" />' +
'<text x="61" y="63" text-anchor="middle" dominant-baseline="middle" ' +
'style="font-family:' + font + ';font-size:100px;fill:black;fill-opacity:.5;">' +
icon + '</text>' +
'</svg>';
return 'data:image/svg+xml;charset=utf-8,' + encodeURIComponent(svg);
}
我nodeImage('red', '', 'FontAwesome')
在一个已经在其他地方使用该字体的页面中这样调用它,所以我认为问题不在于它没有加载。
关于我要去哪里错的任何建议?