我是新手使用jquery并需要帮助。我使用scrolltofixed.js并需要帮助添加左:%% px。这就是我到目前为止所做的:
$(document).ready(function() {
$('#socialbar').scrollToFixed( {marginTop: $('.header').outerHeight(true) + 7,});
$('#socialbar').bind('fixed', function() { });
$('#socialbar').bind('unfixed', function() { });
$('#sidebar').scrollToFixed({
marginTop: $('.header').outerHeight(true) + 15,
fixed: function() { },
});
});
当用户开始向下滚动页面时,这就是#socialbar元素发生的事情:
z-index: 1000; width: 58px; position: fixed; top: 7px; left: 70px;
感谢您的帮助, 格雷戈里S。