美文网首页小程序
uni-app吸顶功能

uni-app吸顶功能

作者: 橙小光 | 来源:发表于2020-03-09 17:11 被阅读0次
    <template>
        <view>
            <view class="ding">顶部实现</view>
            <view :class="{'st':true,'sticky-fixed':isF}">我是浮动栏</view>
            <view class="xiala">文章内容</view>
        </view>
    </template>
    <script>
        export default {
            data() {
                return {
                    yuanH: uni.upx2px(300),
                    isF: false,
                };
            },
            onPageScroll(e) {
                //#ifdef H5
                this.isF = true
                // #endif
                // #ifndef H5
                if (this.yuanH > e.scrollTop) {
                    this.isF = false
                } else {
                    this.isF = true
                }
                // #endif
            },
        };
    </script>
    <style lang='scss' scoped>
        .ding {
            height: 300rpx;
            background-color: aquamarine;
        }
    
        .st {
            height: 100rpx;
            width: 750rpx;
            background-color: #fff;
            z-index: 999;
            /* top: 300upx; */
        }
    
        .sticky-fixed {
            /* #ifdef H5 */
            position: sticky;
            top: 44px;
            /* #endif */
            /* #ifndef H5 */
            position: fixed;
            top: 0;
            /* #endif */
            z-index: 999;
        }
    
        .xiala {
            height: 2500px;
            background-color: #eee;
            padding-top: 100rpx;
        }
    </style>
    
    

    相关文章

      网友评论

        本文标题:uni-app吸顶功能

        本文链接:https://www.haomeiwen.com/subject/nvgpdhtx.html