Я новичок в ReactJs и работает над SVG,
Следующий фрагмент кода ReactJS создает 9 плиток, заполненных разными цветами.ReactJS: insert svg Emoji в Rect of SVG
import React from 'react';
class SvgRectDashboard extends React.Component {
render(){
var svgText = (<svg height="170px" width="364px" xmlns="http://www.w3.org/2000/svg">
<g transform="translate(0,0)">
<rect x="0" y="0" width="118" height="55" fill="#FFCC99" stroke="rgb(0,0,0)" id="rect11"></rect>
<rect x="0" y="55" width="118" height="55" fill="#FFCC66" stroke="rgb(0,0,0)" id="rect12"></rect>
<rect x="0" y="110" width="118" height="55" fill="#FFCC33" stroke="rgb(0,0,0)" id="rect13"></rect>
<rect x="118" y="0" width="118" height="55" fill="#FFCC00" stroke="rgb(0,0,0)" id="rect21"></rect>
<rect x="118" y="55" width="118" height="55" fill="#FF9600" stroke="rgb(0,0,0)" id="rect22"></rect>
<rect x="118" y="110" width="118" height="55" fill="#FF9600" stroke="rgb(0,0,0)" id="rect23"></rect>
<rect x="236" y="0" width="118" height="55" fill="#FF9700" stroke="rgb(0,0,0)" id="rect31"></rect>
<rect x="236" y="55" width="118" height="55" fill="#FF9933" stroke="rgb(0,0,0)" id="rect32"></rect>
<rect x="236" y="110" width="118" height="55" fill="#FF6600" stroke="rgb(0,0,0)" id="rect33"></rect>
</g>
</svg>);
return (<div>{svgText}</div>);
}
}
module.exports = SvgRectDashboard;
в Emojis в IMG/SVG/1f3c8.svg
Мое требование необходимо вставить Emojis в некоторых из плиток (Rect плиток), как показано изображение.
Я пробовал следующие способы. но я не мог этого сделать.
<rect x="0" y="0" width="118" height="55" fill="background:'url(img/svg/1f600.svg)" stroke="rgb(0,0,0)" id="rect11"></rect>
<rect x="0" y="55" width="118" height="55" style={background:'url(img/svg/1f600.svg)} stroke="rgb(0,0,0)" id="rect11"></rect>
Не могли бы вы помочь мне. Благодарю.
Вам нужно будет заполнить прямоугольные элементы шаблоном и настроить шаблон, чтобы он содержал требуемое изображение. –