私には深刻な問題が1つあります。まだ解決策が見つかりませんでしたので、ご了承ください。高密度表示に対応した表紙画像を設定する
私はウェブサイトをやっています。私はレスポンシブ・カバー・バックグラウンド・イメージを作成する必要があります(ページ全体をカバーします)。私が使用を開始:
/* Location of the image */
background-image: url(main.jpg);
/* Background image is centered vertically and horizontally at all times */
background-position: center center;
/* Background image doesn't tile */
background-repeat: no-repeat;
/* Background image is fixed in the viewport so that it doesn't move when
the content's height is greater than the image's height */
background-attachment: fixed;
/* This is what makes the background image rescale based
on the container's size */
background-size: cover;
/* Set a background color that will be displayed
while the background image is loading */
background-color: #464646;
このコードだけで、それは非常によくあるので、私は、ウィンドウのサイズを変更して..だから場合でも、動作します。しかし、problémは、iPadやiPhoneのような高さ解像度の画面に表示されます。そこで、画像は非常に非常にズームされ、ちょっとピクセル化されるか、またはピントが合わない。私は、それは低い画像の解像度のためだと思ったが、私が気付いたよりも、その画像はほぼ5Kである。私はそれのように応答するようにしたいthis site
何か助けて、すぐにそれを解決する必要があります!
おかげ
これはSEOとは何が関係していますか?また、デモを共有することはできますか? – Aziz
網膜と関連があるかもしれません。このサイトをご覧くださいhttps://erikrunyon.com/2010/10/retina-display-and-css-background-images/ –
はい、網膜と関係しています。 –