react中如何引进图片

react中引进图片的方法:1、方式一【import tsIcon from \’../images/typescript.jpeg\’;】;2、方式二【const tsIcon = require( \’./images/typescrip】。

 

react中引进图片的方法:

方式一:

import tsIcon from \'../images/typescript.jpeg\';

方式二:

const tsIcon = require( \'../images/typescript.jpeg\');

使用方式一:

<img src={tsIcon} alt= "" />

使用方式二:

<div style={{ background: `url(${tsIcon}) no-repeat`}}> </div>

使用方式三:

const styles = { test: { background: `url(${tsIcon}) no-repeat center` }}render() { return ( <div style={styles.test}></div> )}

Published by

风君子

独自遨游何稽首 揭天掀地慰生平

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注