我在转换时遇到以下问题:
CSS
header {
display:block;
width:100%;
height:120px;
background-color:#000;
transition: all 1s ease 0s;
}
#content {
height:800px;
border:1px solid #000;
}
.headerSticky {
position:fixed;
top:0;
z-index:1000;
transition: all 1s ease 0s;
}
HTML
<header>lala</header>
<div id="content">
<span class="test">test</span>
</div>
Javascript
$('.test').waypoint(function(direction) {
if(direction == 'down')
$('header').addClass('headerSticky');
else
$('header').removeClass('headerSticky');
});
我有一个标题,当滚动到达一个项目(使用 jquery waypoint )时,我想要将标题固定在顶部。但我希望这个有一个过渡,以便看起来不错。
可能吗?
谢谢