0
當我運行我的網頁時,動畫正在運行並將導航定位到特定位置。如果我讓瀏覽器變小,那麼位置不再正確。只有當我重新加載。不知怎的,你可以做到這一點?計算瀏覽器窗口上的Div位置調整大小
var viewportWidth = $(window).width();
var viewportHeight = $(window).height();
var contentHeight = $('#content').height();
var footerHeight = $('#footer').height();
var newSize = viewportHeight - footerHeight + 30;
var $navigation = $('#navigation');
var $logo = $('#logo');
var $win = $(window).scroll(function() {
$navigation.animate({
top: newSize
}, 1500, function() {
// $('#navigation .active').removeClass('active');
// $('#navigation .current').addClass('active');
$('#arrow').css('display', 'block');
console.log('animation 1 finished');
});
)};
不幸的是它不起作用。 http://www.lignoconcept.com/n/ 我認爲var $ win = $(window).scroll(function()是問題 – herrsaidy
@herrsaidy oups沒有注意到它,爲什麼你使用它,檢查編輯 –