顯示背景圖片
P粉347804896
P粉347804896 2023-07-25 13:13:23
0
1
496

<p>我想在我的專案中添加背景圖片,但是它不起作用。 </p><p>我嘗試全域添加背景圖片,但它不起作用。這是Next.js的首頁程式碼。 </p><p><br /></p> <pre class="brush:php;toolbar:false;">import { Inter } 從 'next/font/google' const inter = Inter({ subsets: ['latin'] }) export default function index() {  return (       <div className="myindex">            dcmkl       </div>  ) } this is global.css file</pre> <p>樣式在這</p> <pre class="brush:php;toolbar:false;">.myclass{  height: 1000px;  width: 1000px;  background-image: url('./pexels-johannes-plenio-1103970.jpg'); }</pre> <p><br /></p>

P粉347804896
P粉347804896

全部回覆(1)
P粉659516906

最佳的儲存本機圖片的位置是您專案根目錄下的公用資料夾(及其子資料夾)。您可以像這樣從該位置匯入圖片到您的頁面或元件中

import someImage from '../public/some-path.jpg'

然後套用內聯樣式:

<div style={{
    backgroundImage: `url(${someImage})`,
    backgroundRepeat: 'no-repeat',
    backgroundPosition: 'center',
    width: '100%',
    height: '100%'
}}>
</div>
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!