2
まずはプロのコーダーではありませんが、私はにはの経験があります。私は近代的な素晴らしい視差のウェブサイトをやろうとしています。だから、私の問題は、背景にある画像はFirefoxでは表示されませんが、Chromeではその画像が表示され、両方で機能するようにしたいということです。ここ は私のコードです:Firefoxで視差が働いていません
//No js yet
#welcome {
font-family: 'Nunito', sans-serif;
font-size: 80px;
margin: 0px;
color: #000;
font-family: 'Slabo 27px', serif;
background-color: #D5D5D5;
height: 1000px;
text-align: center;
vertical-align: middle;
line-height: 1000px;
text-shadow: 0px 0px 10px grey;
border-top: 1px solid black;
}
body {
background-color: #000;
font-family: 'Slabo 27px', serif;
padding: 0px;
margin: 0px;
}
#parallax {
\t background-image: url("http://wp.widewallpapers.net/4k/cities/new-york/3840x2160/New-York-3840x2160-001.jpg");
min-height: 100%;
\t margin: 0px;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
<html>
<head>
<link rel="stylesheet" href="style.css"/>
<link href="https://fonts.googleapis.com/css?family=Nunito" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Slabo+27px" rel="stylesheet">
<meta content="-1" http-equiv="expires"></meta>
<meta content="text/html; charset=utf-8" http-equiv="content-type"></meta>
</head>
<body>
<div id="parallax"></div>
<center><p align="center" id="welcome">Welcome To My Website!</p></center>
</body>
</html>
あなたはすべてのことをコピーしてクロームでそれを試すのであれば、それは(私は思う皆のために)動作しますが、それはFirefoxで動作しません。助けて!
(https://developer.mozilla.org/en-US/docs/Web/HTML/Element/center)。センタリングを手助けするものはたくさんあります。ここでは良いリソースです:http://howtocenterincss.com/ – zik
私もこの質問があります。 CSSのみの視差デモサイト(https://alligator.io/css/pure-css-parallax/)は、Firefoxを除く他のすべてのブラウザで正常に動作します。 –