是否有人知道是否可以使用configure scrollreveal处理显示为none的元素?换句话说,我希望视口外的元素保持不显示,但滚动到视口后,变为可见。
//Here was my attempt
if (!window.sr)
{
window.sr = ScrollReveal({
reset: true,
container: document.querySelector('#sidebarContain'),
duration: 1000,
beforeReveal: function(el) {
el.style.display = 'block';
}
});
}
sr.reveal(document.querySelectorAll('#sidebarContain .person'));

#sidebarContain .person
{
display:none;
}