リンクの内側のページに問題があります。これは私のページにアンカーが動作しない
$.fn.stopAtTop= function() {
var $this = this,
$window = $(window),
thisPos = $this.offset().top,
//thisPreservedTop = $this.css("top"),
setPosition,
under,
over;
under = function(){
if ($window.scrollTop() < thisPos) {
$this.css({
position: 'absolute',
top: ""
});
setPosition = over;
}
};
over = function(){
if (!($window.scrollTop() < thisPos)){
$this.css({
position: 'fixed',
top: 0
});
setPosition = under;
}
};
setPosition = over;
$window.resize(function()
{
bumperPos = pos.offset().top;
thisHeight = $this.outerHeight();
setPosition();
});
$window.scroll(function(){setPosition();});
setPosition();
};
私が使用してjQueryのコードの一部であり、これはDEMO
例である私は、下にスクロールすると、すべてが正常に動作しますが、私は、ページの最上部に移動したいときには不可能です。その問題はスクリプトでdiv
が修正されていることですが、修正方法はわかりません。何か案は?
を、あなたは両方のリンクに#four' 'へリンクし、この意図的ではありますか? –
いいえ、間違いでした。それを私が直した。 – MaSza