例如,想象文字“selectColor(color){
let alert1 = this.alertCtrl.create();
alert1.setTitle('Color Theme');
// Add the new colors here!
const colors = ['Red', 'Pink', 'Purple', 'Blue'];
colors.forEach(color => {
alert1.addInput({
type: 'radio',
label: color,
value: color.toLowerCase(),
checked: color === color.toLowerCase()
});
});
// ...
alert1.addButton('Cancel');
alert1.addButton({
text: 'Okay',
handler: data => {
// ...
}
});
alert1.present();
}
”。
我知道有SVG文本和SVG图像。
是否可以创建可以在文本URL
标签中使用的图像(不绘制文本行)?
答案 0 :(得分:1)
如果您需要,可以使用带有SVG文本的data URI ...
<img src='data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><text x="0" y="35">URL</text></svg>'>
&#13;