我有幾個頁面,我使用漸變作爲背景和頁腳匹配底部漸變顏色。因此,我有第二頁比儀表板頁面長,頁腳不匹配顏色。我想爲每個頁面設置一個靜態漸變。jQuery的移動和CSS固定漸變每頁相同
這是我的風格背景:
.background {
background-image: -webkit-linear-gradient(#00cef4,#00a0e5);
background-repeat:repeat-x;
background-size: 100% 100%;
-o-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-webkit-background-size: 100% 100%;
}
,這是頁腳的造型:
.ui-footer {
background-image: linear-gradient(#00a6e7, #00a0e5);
border-color: transparent !important
}
.footer a:after {
background-color: transparent !important;
/*border-color: transparent !important;*/
height: 70px;
}
.ui-footer, .footer, .footer li, .footer a {
height: 70px;
}
開始從底部梯度... simples! –
@Harry這會導致頁腳下方的內容在您滾動頁面時流血。 @Beginnerprogrammer你嘗試過'background-attachment:fixed'嗎?或者用100vw 100vh(100%屏幕寬度,100%屏幕高度)調整背景大小? –
@哈里,這是不明顯的工作,因爲圖標將被放置在內容的前面,沒有不可讀的背景。 – Sreinieren