如何创建固定在snap-content元素中的位置
例如使



... { position: fixed; top: 5rem; right: 0; }

<button class="..." snap-toggle="right">Toggle Right</button> 





in this example

并且滚动按钮时页面的位置没有改变

最佳答案

对于临时解决方案,使用jQuery添加此代码

$('#ScrollElemntID').scroll(function () {
    var $win = $('#ScrollElemntID');
    $('.btnFix').css('top', $win.scrollTop());
});

关于css - 如何在snap-content元素中使用angular-snap.js创建固定按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31609871/

10-12 06:43