jquery的新手,需要帮助添加左侧位置

时间:2012-05-27 18:00:53

标签: jquery scroll

我是新手使用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。

1 个答案:

答案 0 :(得分:0)

查看css()方法:

$('#socialbar').css('left', 'your value');