我的网站上有一个计算器(用php编写),在这个计算器的末尾有一个div结果。
在桌面上它工作正常,但在移动设备上,我想将结果div固定到底部,直到滚动div的原始位置。之后我想把它的位置改为静态。
换句话说,页面上有一个固定的(到底部)元素,滚动后,在div的原始位置,我想要解开它。
我希望,它可以理解,但有一个 example page - 看看MOBILE版本!!!
我该怎么做?
提前致谢!
答案 0 :(得分:0)
以下是我过去的表现:
示例:
// Get the document element to use later.
var doc = document.documentElement;
// Get your important message.
var importantMsg = document.getElementById('important-msg');
// Find out how far the bottom of our message is from the top of the page while it's not fixed.
var originalMsgBottom = importantMsg.getBoundingClientRect().bottom;
// Get the window height.
var windowHeight = Math.max(doc.clientHeight, window.innerHeight || 0);
// Get the scroll position we need to check for while srolling.
var scrollPosition = originalMsgBottom - windowHeight;
// Now make your message fixed by default.
importantMsg.className = 'important-msg-fixed';
// Create the function to get the current scroll and see if it is greater than or equal to the position we defined earlier.
var scrollFunction = function() {
var scrollTop = (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);
if (scrollTop >= scrollPosition) {
importantMsg.className = ''; // If it is, remove the fixed class.
} else {
importantMsg.className = 'important-msg-fixed'; // If it's not, then add it.
}
}
// Make our function run everytime the window is scrolled.
window.addEventListener('scroll', scrollFunction);
#important-msg {
background: #f00;
color: #fff;
padding: 10px;
}
.important-msg-fixed {
position: fixed;
right: 0;
bottom: 0;
left: 0;
margin: 0;
}
<h1>Lorem Ipsum</h1>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p>Scroll Down</p>
<p id="important-msg">Important Message</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
<p>More Stuff</p>
答案 1 :(得分:0)
如果你不关心IE浏览器(或者如果你在2022年读到这篇文章:D)
you can use position: sticky
.sticky{
position: sticky;
bottom: 0;
background: red;
}
<div class="content">
<p style="border:4px dashed;height:150vh;">Scroll down</p>
<div class="sticky">I'M STICKY</div>
</div>
<div class="content">
<p style="border:4px dashed;height:150vh;">Scroll up</p>
</div>
https://caniuse.com/#feat=css-sticky
如果您想要(种类?)后备,您可以:
.sticky{
position: absolute; /* fallback to absolute */
width: 100%; /* fallback width */
position: sticky;
bottom: 0;
background: red;
}