当我切换过滤器“CM”时,在第 2、第 3 和第 4 行,内容在跳跃,我不知道为什么。
$( document ).ready(function() {
$('.filter_content').mixItUp({
controls: {
enable: false // we won't be needing these
},
animation: {
enable: false
},
callbacks: {
onMixLoad: function(){
$(this).mixItUp('setOptions', {
animation: {
enable: true,
duration: 400,
effects: 'fade',
easing: 'ease'
},
});
}
}
});
});
你能帮我解决这个问题吗?