ho finito per scegliere cinque punto di interruzione sulla base di informazioni provenienti da StatCounter:

Questo è fino a dicembre 2012.
base al largo di questi numeri, la mia prova, e parlando con altri che ha scelto le seguenti opzioni:
/*Monitors Large than 1920px, image has "soft" edges to blend into background */
@media (min-width:1921px){
html, body{
background: url(/images/backgrounds/1920-bg-large.jpg) no-repeat center top fixed #190303;
background-size:100% auto;
}
}
/* Mointores ranging from 1367px - 1920px */
@media (min-width:1367px) and (max-width:1920px){
html, body{
background: url(/images/backgrounds/1920-bg.jpg) no-repeat center top fixed #190303;
background-size:100% auto;
}
}
/* Mointores ranging from 769px - 1366px */
@media (min-width:769px) and (max-width:1366px){
html, body{
background: url(/images/backgrounds/1366-bg.jpg) no-repeat center top fixed #190303;
background-size:100% auto;
}
}
/* Tablets like the iPad 2 and iPad Mini */
@media (max-width:768px){
html, body{
background: url(/images/backgrounds/768-bg.jpg) no-repeat center top fixed #190303;
background-size:100% auto;
}
}
/* At a certain point the Background images become irrelevant as they are hidden behind other elements. Changed to a solid BG */
@media handheld, only screen and (max-width: 640px) {
html, body{
background:#190303;
}
}
Suggerirei utilizzare entrambi i due metodi. Prepara due immagini (ad esempio width = 500px e width = 1500px), usa 500px se la larghezza dello schermo è inferiore a 750 poiché probabilmente è un tablet con memoria più piccola e larghezza di banda limitata, altrimenti usa il 1500px. Inoltre, rendili adatti allo schermo tramite css. – benbai123