假设我有var icon_name = 'facebook'
,如何动态生成相应的字体?
有没有可用的方法?
例如fontAwesome.get("icon_name")
答案 0 :(得分:0)
如果您想通过图标名称生成图标元素:
getIcon = (iconName) => document.createElement('i').setAttribute('class', 'fab fa-' + iconName)
document.body.appendChild(getIcon('facebook')) //adds it to the body