我正在使用PPTXGENJS和javascript / jquery创建.PPT。 .PPT中有一个包含行和列的表。我需要每个单元格中的文本具有不同的样式。
EX:“一个男孩正在跑步”。 “男孩是”一词必须为灰色,“跑步”部分应为绿色。
到目前为止,代码如下:
var pptx = new PptxGenJS();
var slide = pptx.addNewSlide();
var rows = [];
rows.push([ { text: "A boy is\n running", options: {color: 'black'}} ]);
slide.addTable(rows, {
x:0,
y:0.5,
w:10.0,
color:'363636',
border:'none',
autoPage: true,
lineWeight: 1.0,
rowH: 0.5,
margin: [2,10,2,10],
align: 'center',
fontSize: 8
});