我有一个页面,其中包含横幅(.banner
)和浮动元素(.float
)。
当用户滚动查看横幅广告时,我希望.float
相对于横幅广告出现(垂直居中),但是当用户滚动经过横幅广告时,它将粘贴在屏幕上。
实际上,float的位置始终为fixed
,我使用Javascript来更改变换值以将其定位在滚动位置。
它几乎可以按我的意愿工作,但是我希望元素在位置之间“滑动”,而我无法让这种行为按我的意愿工作。如果没有CSS过渡,它会跳转。使用CSS过渡时,它会滑动,但是当我向上滚动时,它会滑到横幅垂直中心上方太远;我希望它在您滚动回横幅时感觉像“粘在”横幅上。
任何帮助表示赞赏。 JSFiddle在这里:http://jsfiddle.net/L452xf7h/12/
HTML:
<div class="container">
<div class="banner"></div>
<div class="float">Floating Element</div>
</div>
CSS:
body, html {
margin: 0;
}
.container {
background: orange;
height: 2000px;
}
.banner {
width: 100%;
height: 400px;
background: white;
}
.float {
display: none;
width: 50px;
height: 50px;
background: red;
position: fixed;
top: 100px;
right: 100px;
/* this transition makes float travel high in banner when scrolling up */
/* transition: transform .3s linear; */
}
JS:
var float = document.querySelector('.float');
if (float) {
// init position
onScroll();
// check on scroll
window.addEventListener('scroll', onScroll);
}
function onScroll() {
var banner_height = 400;
var float_topCss = 100;
var float_height = 50;
if (window.scrollY < banner_height) {
position = 0;
// center vertically in banner
position += banner_height / 2;
position -= float_height / 2;
// account for current scroll
position -= window.scrollY;
// minus difference of top css value
position -= float_topCss;
float.style.transform = "translate3d(0,"+position+"px,0)";
}
else {
float.style.transform = "translate3d(0,0,0)";
}
float.style.display = 'block';
}
答案 0 :(得分:0)
这是您要找的结果吗?
var float = document.querySelector('.float');
if (float) {
// init position
onScroll();
// check on scroll
window.addEventListener('scroll', onScroll);
}
function onScroll() {
var banner_height = 400;
if (window.scrollY < banner_height) {
float.classList.remove('sticky');
}
else {
float.classList.add('sticky');
}
}
body, html {
margin: 0;
}
.container {
background: orange;
height: 2000px;
position: relative;
}
.banner {
width: 100%;
height: 400px;
background: white;
}
.float {
display: inline-block;
width: 50px;
height: 50px;
background: red;
position: absolute;
top: 100px;
right: 100px;
float: right;
transition: transform .3s linear;
}
.float.sticky {
top: -50px;
transform: translateY(150px);
position: sticky;
}
<div class="container">
<div class="banner"></div>
<div class="float">Floating Element</div>
</div>