0

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

4

1 回答 1

0

看看css()方法:

$('#socialbar').css('left', 'your value');
于 2012-05-27T18:03:39.397 回答