当页面滚动时固定元素的jQuery插件:MakeFixed.js
jopen
9年前
MakeFixed.js 是一个轻量级 jQuery 插件,它可以在页面滚动过程中动态地构建固定位置不变的元素,并且它还带有回调函数。
示例代码:
$('.fixed').makeFixed ({ onFixed: function (el) { if ($(el).attr('id') == 'photo') { $(el).children().css ({ width: '500px' }); } }, onUnFixed: function (el) { if ($(el).attr('id') == 'photo') { $(el).children().css ({ width: '450px' }); } } });