MakeFixed.js頁(yè)面固定插件
MakeFixed.js 是一個(gè)輕量級(jí) jQuery 插件,它可以在滾動(dòng)過(guò)程中動(dòng)態(tài)地建立固定的元素,并且它還帶有回調(diào)函數(shù)。
示例代碼:
$('.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'
});
}
}
});
評(píng)論
圖片
表情
