这是我第一次在jQuery中使用Parallax类型的东西...... 我已经到了一个突破点,我不知道如何解决它。
我的代码是...... HTML
<div id="bannerText" style="margin-top: 0px; opacity: 1;">
<center>Text, blah blah blah</center>
</div>
的Javascript
function scrollBanner() {
//Get the scoll position of the page
scrollPos = jQuery(this).scrollTop();
//Scroll and fade out the banner text
jQuery('#bannerText').css({
'margin-top' : -(scrollPos/3)+"px",
'opacity' : 1-(scrollPos/300)
});
}
CSS
#bannerText {
position: fixed;
top: 250px;
text-align: center;
width: 100%;
}
我试图这样做,当用户向下滚动时,文字会慢慢下降(但比它们慢,所以它会离开屏幕)并让它淡出。
现在,它做得很好,没有。它只是我的文字在屏幕上......
编辑:trying to make it somewhat like this websites, for example, Click here
答案 0 :(得分:1)
这是一个工作示例
您可以使用参数来获得所需的效果。请务必在页面中包含jQuery,如this fiddle:
$(window).on('scroll', function() {
//Get the scoll position of the page
scrollPos = $(this).scrollTop();
//Scroll and fade out the banner text
$('#bannerText').css({
'margin-top' : (scrollPos/3)+"px",
'opacity' : 1-(scrollPos/100)
});
});
答案 1 :(得分:0)
试试这个DEMO
function scrollBanner() {
//Get the scoll position of the page
scrollPos = jQuery(this).scrollTop();
//Scroll and fade out the banner text
jQuery('#txt').css({
'margin-top' : -(scrollPos/3)+"px",
'opacity' : 1-(scrollPos/500)
});
}
$(document).scroll(function(){
scrollBanner();
});
<强> HTML 强>
<div id="bannerText" style="margin-top: 0px; opacity: 1;">
<center><h1 id='txt'>Text, blah blah blah</h1></center>
</div>
<div id="expander"></div>
<强> CSS 强>:
#bannerText {
position: fixed;
top: 250px;
text-align: center;
width: 100%;
height:300px;
background:orange;
overflow:hidden;
}
#expander{
position:absolute;
width:100%;
height:30000px;
}
#txt{
position:fixed;
top:500px;
}