互聯(lián)網(wǎng)行業(yè)環(huán)境分析seo博客
1.需求:在vue項目已設(shè)置統(tǒng)一的body背景圖的前提,單獨給首頁換一個背景圖,然后其他頁面背景圖不變的臨時需求
實現(xiàn)思路1:在首頁home.vue中
在公共的style.css文件中寫上兩個背景樣式(寫在公共樣式中是因為style.css比組件內(nèi)部的先加載,避免頁面出現(xiàn)后背景空白的問題)
body {(添加這個樣式是為了在除首頁之外的頁面刷新頁面時,會丟失otherBg類名,導(dǎo)致其他頁無背景圖片的情況)margin: 0;padding: 0;background: url(../img/bg.gif) no-repeat 100px 60px #1a1a58;background-attachment: fixed;background-size: 100% 100%;overflow-x: hidden
}
.homeBg{background: url(../img/bgNew.jpg) no-repeat 100px 60px #1a1a58;(以下多余的樣式是為了使背景圖鋪滿屏幕)margin: 0;padding: 0;background-attachment: fixed;background-size: 100% 100%;overflow-x: hidden }.otherBg{background: url(../img/bg.gif) no-repeat 100px 60px #1a1a58;margin: 0;padding: 0;background-attachment: fixed;background