gpt4 book ai didi

javascript - Raphaeljs 子字符串文本属性

转载 作者:行者123 更新时间:2023-11-29 16:24:13 25 4
gpt4 key购买 nike

我想知道是否可以更改 Raphael 中文本对象的子字符串的属性。例如,我想在下面的字符串“The magical wizard ruled the world!”中将单词 wizard 加粗。在拉斐尔文本对象中。我研究过使用 Raphael.print() 方法,我需要文本中的一些属性用于代码的其他部分。

最佳答案

字体在元素级别设置,很像在常规 html 中。为了将单独的字体或样式应用于特定单词,您需要将文本分成单独的元素。

var start = paper.text(20, 20, "The magical ");
start.attr({ "text-anchor": "start" });
var startBox = start.getBBox();
var bold = paper.text(startBox.width + startBox.x, 20, "wizard ");
bold.attr({ "text-anchor": "start", "font-weight": "bold" });
var boldBox = bold.getBBox();
var end = paper.text(boldBox.width + boldBox.x, 20, "ruled the world!");
end.attr({ "text-anchor": "start" });

关于javascript - Raphaeljs 子字符串文本属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7881609/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com