【发布时间】:2017-06-07 15:20:09
【问题描述】:
我的视差滚动无法在移动设备上运行,包括 Android 和 iOS。该代码适用于桌面,但不适用于移动设备,无论是任何浏览器。背景图像不会以视差效果滚动。你可以在这里查看https://dkpyk75z6sfdo.cloudfront.net/
这里是 CSS 代码,
.home {
background: url(assets/images/img1.jpg) no-repeat center center fixed;
display: table;
height: 100%;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#information {
background: url(assets/images/b1.jpeg) no-repeat center center fixed;
display: table;
height: 100%;
z-index: -1;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#information2 {
background: url(assets/images/ab9.jpeg) no-repeat center center fixed;
display: table;
height: 100%;
z-index: -1;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
#information3 {
background: url(assets/images/c4.jpg) no-repeat center center fixed;
display: table;
height: 100%;
z-index: -1;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
HTML 代码
<!-- first section - Home -->
<div class="home">
<div class="centered">
<h1>PARALLAX WEB DESIGN</h1>
</div>
</div>
<!-- /first section -->
<!-- second section -->
<div id="information">
<div class="centered">
<h1>SECTION 1</h1>
</div>
</div>
<!-- /second section -->
等等
【问题讨论】:
标签: javascript jquery html css jquery-mobile