如何在 Coffeescript 中编写这行代码?谢谢
window.scrollY >= origOffsetY ? navbar.classList.add('navbar-fixed-top') :
navbar.classList.remove('navbar-fixed-top');
我试试这个,但不起作用。
if window.scrollY >= origOffsetY then navbar.classList.add('navbar-fixed-top') else navbar.classList.remove('navbar-fixed-top')