我使用 http://fabricjs.com/ 库我遇到此问题我需要修复在Internet Explorer中,我添加的文本发生在所选区域旁边,但在Chrome和Firefox中可能会工作。
var text_bottom = new fabric.Text(text_bottom, {
originX: 'center',
left:270,
top: 490,
fontFamily:'AsmaaFont',
fill:"#C0C0C0",
fontSize: 50,
textAlign: 'center'
});
我该怎么办?
答案 0 :(得分:3)
请删除:
textAlign: 'center'
所以你的代码将是:
var text_bottom = new fabric.Text(text_bottom, {
originX: 'center',
left:270,
top: 490,
fontFamily:'AsmaaFont',
fill:"#C0C0C0",
fontSize: 50
});