做网站|网站建设,就上易助科技网

前端技术文档及相关资料下载

关于前端html、css、js等技术上的各种疑难棘手问题的解决方案探讨及相关资料下载!

JS 轮子 CSS粘性位置sticky Polyfill
来源:易助科技网浏览量:4收藏

简介

CSS粘性位置sticky的Polyfill :stickyfill.js。支持顶部位置附着,可在IE9+以上使用。


使用

1.  引入文件

<script src="path/to/stickyfill.min.js"></script>


2.  HTML

<div class="sticky">
...
</div>


3.  调用

.sticky {
position: -webkit-sticky;
position: sticky;
top: 0;
}


相关链接

文档地址 :https://www.worldlink.com.cn/zh_tw/osdir/stickyfill.html

GitHub 地址 :https://github.com/wilddeer/stickyfill