我的桌面上有一個背景圖片。但是,由於它的大小,它使移動網站變得緩慢並且不成比例。是否可以刪除移動網站的背景圖片或至少使其響應?如何刪除移動網站的背景圖片?
4
A
回答
0
下面的代碼是根據的Tim Kadlec改編而成的,該代碼遍歷了有條件地顯示背景圖像的各種場景。
對於您的情況,移動版本設置爲匹配其父元素的寬度。根據您的佈局,您可能需要設置/限制#container
所在元素的大小。
如果您選擇在移動設備上隱藏背景圖像,則第一個樣式塊將進入第一個媒體查詢,第二個可以被淘汰。正如所提到的popnoodles,張貼一些代碼可以更容易地提供更具體的解決方案。
<div id="container"></div>
#container {
background-image: url('images/bg.png');
}
@media all and (min-width: 601px) {
#container {
width:200px;
height:75px;
}
}
@media all and (max-width: 600px) {
#container {
max-width: 100%;
background-size: 100%;
}
}
0
您可以使用媒體查詢爲桌面版網站和移動網站指定不同的css規則。
參考,How to use CSS media query to scale background-image to viewing window
使用媒體查詢取決於我們可以設置造型分辨率的屏幕。 參考文獻https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Media_queries有關媒體查詢的更多信息。
您也可以參考
http://mobile.smashingmagazine.com/2010/07/19/how-to-use-css3-media-queries-to-create-a-mobile-version-of-your-website/創建您的網站的移動版本。
1
實際上隱藏背景圖像here是簡單的CSS:
background-image: none;
這裏是移動的溶液中,我使用的媒體查詢
HTML
<div class="bgimg" >
</div>
外部CSS
/* Show in Large desktops and laptops */
@media (min-width: 1200px) {
.bgimg {
background-image: url('../img/your-eternity.jpg');
background-repeat: no-repeat;
height: 800px;
width: 1000px;
background-size:100% auto;
}
}
/*Hide in Other Small Devices */
/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {
.bgimg {
background-image: none;
}
}
/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {
.bgimg {
background-image: none;
}
}
/* Landscape phones and portrait tablets */
@media (max-width: 767px) {
.bgimg {
background-image: none;
}
}
/* Portrait phones and smaller */
@media (max-width: 480px) {
.bgimg {
background-image: none;
}
}
希望可以幫助別人。
相關問題
- 1. 如何刪除我的ucoz網站的背景圖片?
- 2. 網站背景圖片 - 如何?
- 3. 如何刪除背景圖片屬性?
- 4. 移動網站每頁上的不同背景圖片?
- 5. 用於移動網站背景圖片的CSS
- 6. 我的網站背景滑塊圖片不方便移動
- 7. 移動網站上的變色(balence)背景圖片
- 8. css背景圖片移動
- 9. 移動背景圖片
- 10. 網站背景圖片的尺寸
- 11. 如何在網站上製作動態背景圖片?
- 12. 如何在移動平臺上爲WordPress網站調整背景圖片
- 13. 網站背景圖片不包括
- 14. 一個大背景圖片網站
- 15. 背景中的可移動大圖片
- 16. 從產品圖片刪除背景
- 17. 如何刪除移動網站上的圖像滑塊?
- 18. 如何將背景圖片插入我的網站?
- 19. 如何製作像這個網站的背景圖片?
- 20. 如何讓網站頂部的div背景圖片顯示?
- 21. 如何更改我網站上的背景圖片?
- 22. 網站背景圖案的好網站
- 23. 固定背景圖片網站中的圖片沒有響應
- 24. 移動背景圖片放大
- 25. 用窗口移動背景圖片
- 26. 使用移動背景圖片:目標
- 27. 右鍵移動背景圖片
- 28. 背景圖片在移動設備上
- 29. 在循環中移動背景圖片
- 30. 上下移動背景圖片
沒有發佈代碼,您不太可能獲得代碼作爲答案。您不需要從移動設備上移除,而是希望添加到平板電腦/臺式機上,以便從最小的向上工作,因此您的背景只有在媒體查詢適用於屏幕尺寸大於任何值的情況下才能設置。 – Popnoodles