我正在使用两个脚本(FixTo和Breakpoints)来允许页面上的“粘性”元素。当我调整窗口大小时会出现问题。我需要销毁 FixTo 功能。有没有人在这方面取得任何成功:
$(window).bind('enterBreakpoint1024',function() {
$('#log').text('debug: Entering 1024 breakpoint');
// Sticky Elements (scroll)
$('#stats').fixTo('.container');
$('#extra').fixTo('.container', {mind: '#stats'});
$('#right').fixTo('.container');
});
$(window).bind('exitBreakpoint1024',function() {
$('#log').text('debug: Exiting 1024 breakpoint');
// Need to Unbind, Destroy, or Remove the fixTo() function
});