浮動小数点数(div)の下部に達しても動作していない浮動小数点(div)を停止しようとしています。変数bottom
は、含まれているdivのページ上で最も低いポイントですが、なんらかの理由でそれが動作しない場合があります。誰でもより良い方法がありますか?jQueryを使用して指定されたポイントで浮動小数点divを停止する方法
$(document).ready(function() {
var top = $('#buttonsDiv').offset().top - parseFloat($('#buttonsDiv').css('margin-top').replace(/auto/, 0));
var bottom = $('#mainBody').offset().top + $('#mainBody').height();
$(window).scroll(function (event) {
// what the y position of the scroll is
var y = $(this).scrollTop();
var z = y + $('#buttonsDiv').height();
// whether that's below the form
if (y >= top && z <= bottom) {
// if so, add the fixed class
$('#buttonsDiv').addClass('fixed');
} else {
// otherwise remove it
$('#buttonsDiv').removeClass('fixed');
}
});
});
'.fixed'クラスに' bottom:0; 'を指定しましたか? – techfoobar
私はそれを追加しようとし、まだそれは仕事をしませんでした。問題はスクロール機能が浮動要素の底を認識するための方法を見つけることでした。私は上記のコードでそれを解決したと思うが、それを含んでいるdivの一番下に止めることは私を困惑させる。 – user1108210
htmlやcss、または実際のサンプルを含めることができますか? –