📅  最后修改于: 2023-12-03 15:36:33.987000             🧑  作者: Mango
在 React 应用中,有多种方法来设置背景图像。其中之一是使用内联样式。
import backgroundImg from './background.png';
render
函数或组件中,使用 style
属性设置内联样式。在样式对象中,使用 backgroundImage
属性设置背景图像。<div style={{backgroundImage: `url(${backgroundImg})`}}>
...
</div>
import React from 'react';
import backgroundImg from './background.png';
function App() {
return (
<div style={{backgroundImage: `url(${backgroundImg})`}}>
<h1>Welcome to my app</h1>
<p>This is a sample paragraph</p>
</div>
);
}
export default App;
import
的方式引入图像,而不是直接在样式中使用相对路径。backgroundSize
属性。onLoad
事件来延迟渲染。