Safari 7 以降の CSS で重大な問題が発生しています。モバイルとデスクトップ...他のすべてのブラウザーは、ページと CSS を比較的正常に読み込みます。Apple は Safari 7+ で実際に何をしたのでしょうか? すべての iPhone ユーザーがこのページをごちゃまぜに見ることになるので、これは悪いことです...
明確な問題が何かはわかりませんが、CSS が欠落していることがわかります。これは CSS の一部です... ある種の Safari Guru が問題または (問題) が何であるかを確認できることを願っています。これは、私のサイトでこれらの問題が発生している唯一の主要なブラウザーです。「ユーザー エージェント」が CSS の一部を削除しているようです。
http://www.asumid.comは参照用のサイトです...実際にプレビューするには、Browserstack を介して Safari 7/8 にサイトをロードするか、マシンにある場合を除いて、これ以上の方法はありません。
* {
padding: 0;
border: 0;
margin: 0;
font-size: 100%;
}
/* PRELOAD STYLES */
#pageload {
position: fixed;
background: rgba(17,17,17,.95);
z-index: 1000;
width: 100%;
height: 100%;
-moz-transition: background-color 1s ease-in-out;
-ms-transition: background-color 1s ease-in-out;
-webkit-transition: background-color 1s ease-in-out;
-o-transition: background-color 1s ease-in-out;
transition: background-color 1s ease-in-out;
cursor: wait;
}
#preload_img {
width: 100px;
height: 120px;
margin: 15% auto;
}
#preload_img img {
width: 100%;
height: 100%;
}
#preload_img span {
-ms-animation: loading 2s ease-in-out .5s infinite normal;
-moz-animation: loading 2s ease-in-out .5s infinite normal;
-webkit-animation: loading 2s ease-in-out .5s infinite normal;
-o-animation: loading 2s ease-in-out .5s infinite normal;
animation: loading 2s ease-in-out .5s infinite normal;
font-size: 100%;
position: fixed;
margin: auto;
top: 45%;
left: 48%;
}
h2.toConnect {
position: fixed;
bottom: 7em;
right: 0;
width: 100px;
height: 75px;
background-color: #777;
background-image: url('images/jumptoconnect.png'), url('images/textures/stainlesssteel_001.jpg');
background-position: center center, left center;
background-size: contain, 200%;
background-repeat: no-repeat;
border-radius: 12px 0 0 12px ;
}
h2.toConnect:hover, h2.toConnect:active {
background-color: #999;
background-image: url('images/jumptoconnect.png'), url('images/textures/stainlesssteel_001.jpg');
background-size: contain, 200%;
background-repeat: no-repeat;
opacity: .75;
}
#pageload > div.close {
width: 50px;
height: 50px;
position: absolute;
right: 0;
top: 0;
background: #EEE;
font-size: 2.5em;
text-align: center;
vertical-align: top;
cursor: pointer;
color: #555;
border-radius: 0 0 0 12px;
}
/* ... */