2014-01-26 70 views
0

我正在尋找一種方法來只顯示圖像,如果屏幕分辨率高於x,x爲網頁。它目前僅使用HTML/CSS的網站,儘管我對創意持開放態度。如果屏幕分辨率結束,顯示圖像?

如果這是可能的任何幫助將不勝感激。

謝謝。

+1

什麼是語言/環境? – RaviH

+0

我的歉意。這是一個網頁的HTML/CSS。 – user3227878

+0

因爲這也許首先你需要學習一些關於媒體查詢 http://www.broken-links.com/2012/07/13/using-media-queries-to-test-device-resolution/ –

回答

3

對於這一點,我們通常使用媒體查詢

// Set Defaults for Small displays like Mobile 
.img { 
    display:none; // your image class or can be img tag 
} 

// Desktop and landscape tablets more than 960 px 
@media (min-width: 960px){ 
    .img { display: block; margin: 0 auto;} // your image class or can be img tag 
} 

如果你有興趣只是看看這個tutorial

+0

謝謝,我想我明白媒體查詢現在是如何工作的。 – user3227878