如何进行水平视差滚动
How to do horizontal parallax scrolling
我使用的是最新版本的 Bootstrap、JQuery 和 Skrollr。
我想要一个静态背景和几个在您通过视差滚动滚动时出现的场景。我可以在您滚动时制作场景,但我正在寻找一种方法来显示您没有向下移动页面。
我想制作像这张图片这样的场景:
注意它是如何移动的right-left,但从来没有像您实际向下滚动页面那样出现。
这是我能解释的最好的了。似乎找不到任何好的教程来完成这个。任何在正确方向上的帮助都会非常出色。
如评论中所述,skrollr 不支持水平滚动,但您可以做其他事情:
您可以使用垂直滚动条为水平方向的元素设置动画。
这是 Horizontal scrolling effect with Skrollr
上的堆栈溢出 post
这是 jsFiddle from that post
中的工作演示
希望这能让你继续前进。
jInvertScroll 允许水平滚动并支持视差。
这是一篇关于如何create horizontal parallax scrolling with jInvertScroll
的文章
只是水平和中间滚动使用不同的值
<div class="horizon scroll">
<img src="http://i.imgur.com/IImTBHM.png" alt="Background" />
</div>
<div class="middle scroll">
<img src="http://i.imgur.com/e2pwKbv.png" alt="Clouds and Baloons" />
</div>
这是堆栈片段中的演示:
Note: Try viewing in full page
(function($) {
$.jInvertScroll(['.scroll']);
}(jQuery));
html, body {
padding: 0;
margin: 0;
font-family:'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
color: #555;
background: #9fdefd;
}
h1, h2 {
color: #238acb;
}
.horizon {
line-height: 0;
z-index: 100;
width: 3000px;
}
.middle {
line-height: 0;
z-index: 250;
width: 4500px;
}
.front {
z-index: 500;
top: 150px;
width: 6000px;
}
.intro {
position: absolute;
left: 500px;
top: 0px;
padding-right: 50px;
background: url('http://i.imgur.com/3woqwh2.png') no-repeat right 5px;
}
.page {
position: absolute;
top: 0px;
width: 500px;
background: white;
padding: 10px 30px;
border: 1px #eee solid;
}
.panel1 {
left: 1500px;
}
.panel2 {
left: 2575px;
}
.panel3 {
left: 3800px;
}
.panel4 {
left: 5100px;
}
<link href="http://www.pixxelfactory.net/jInvertScroll/css/jInvertScroll.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://www.pixxelfactory.net/jInvertScroll/js/jquery.jInvertScroll.js"></script>
<div class="container">
<div class="horizon scroll">
<img src="http://i.imgur.com/IImTBHM.png" alt="Background" />
</div>
<div class="middle scroll">
<img src="http://i.imgur.com/e2pwKbv.png" alt="Clouds and Baloons" />
</div>
<div class="front scroll">
<h1 class="intro">Scroll down</h1>
<div class="panel1 page">
<h2>The Hot Air Balloon</h2>
</div>
<div class="panel2 page">
<h2>How they work</h2>
</div>
<div class="panel3 page">
<h2>Practicalities</h2>
</div>
<div class="panel4 page">
<h2>Section 4</h2>
</div>
</div>
</div>
我使用的是最新版本的 Bootstrap、JQuery 和 Skrollr。
我想要一个静态背景和几个在您通过视差滚动滚动时出现的场景。我可以在您滚动时制作场景,但我正在寻找一种方法来显示您没有向下移动页面。
我想制作像这张图片这样的场景:
注意它是如何移动的right-left,但从来没有像您实际向下滚动页面那样出现。
这是我能解释的最好的了。似乎找不到任何好的教程来完成这个。任何在正确方向上的帮助都会非常出色。
如评论中所述,skrollr 不支持水平滚动,但您可以做其他事情:
您可以使用垂直滚动条为水平方向的元素设置动画。
这是 Horizontal scrolling effect with Skrollr
上的堆栈溢出 post
这是 jsFiddle from that post
希望这能让你继续前进。
jInvertScroll 允许水平滚动并支持视差。
这是一篇关于如何create horizontal parallax scrolling with jInvertScroll
的文章只是水平和中间滚动使用不同的值
<div class="horizon scroll">
<img src="http://i.imgur.com/IImTBHM.png" alt="Background" />
</div>
<div class="middle scroll">
<img src="http://i.imgur.com/e2pwKbv.png" alt="Clouds and Baloons" />
</div>
这是堆栈片段中的演示:
Note: Try viewing in full page
(function($) {
$.jInvertScroll(['.scroll']);
}(jQuery));
html, body {
padding: 0;
margin: 0;
font-family:'Open Sans', sans-serif;
font-weight: 300;
font-size: 16px;
color: #555;
background: #9fdefd;
}
h1, h2 {
color: #238acb;
}
.horizon {
line-height: 0;
z-index: 100;
width: 3000px;
}
.middle {
line-height: 0;
z-index: 250;
width: 4500px;
}
.front {
z-index: 500;
top: 150px;
width: 6000px;
}
.intro {
position: absolute;
left: 500px;
top: 0px;
padding-right: 50px;
background: url('http://i.imgur.com/3woqwh2.png') no-repeat right 5px;
}
.page {
position: absolute;
top: 0px;
width: 500px;
background: white;
padding: 10px 30px;
border: 1px #eee solid;
}
.panel1 {
left: 1500px;
}
.panel2 {
left: 2575px;
}
.panel3 {
left: 3800px;
}
.panel4 {
left: 5100px;
}
<link href="http://www.pixxelfactory.net/jInvertScroll/css/jInvertScroll.css" rel="stylesheet"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://www.pixxelfactory.net/jInvertScroll/js/jquery.jInvertScroll.js"></script>
<div class="container">
<div class="horizon scroll">
<img src="http://i.imgur.com/IImTBHM.png" alt="Background" />
</div>
<div class="middle scroll">
<img src="http://i.imgur.com/e2pwKbv.png" alt="Clouds and Baloons" />
</div>
<div class="front scroll">
<h1 class="intro">Scroll down</h1>
<div class="panel1 page">
<h2>The Hot Air Balloon</h2>
</div>
<div class="panel2 page">
<h2>How they work</h2>
</div>
<div class="panel3 page">
<h2>Practicalities</h2>
</div>
<div class="panel4 page">
<h2>Section 4</h2>
</div>
</div>
</div>