html页面底部悬浮广告关注账号提醒栏

584次阅读
没有评论

共计 1067 个字符,预计需要花费 3 分钟才能阅读完成。

html 页面底部悬浮广告关注账号提醒栏
<style>
    .margingT {margin-bottom: 60px;}

    .bottomAD {
        -webkit-box-sizing: border-box;
        height: 80px;
        position: fixed;
        bottom: 0;
        left: 0;
        z-index: 1000;
        padding: 0 10px;
        overflow: hidden;
        width: 100%;
        background: rgba(0, 0, 0, .8);
    }

    .bottom-pic {
        position: absolute;
        top: 10px;
        width: 60px;
        height: 60px;
        overflow: hidden;
        -webkit-border-radius: 10px;
        border-radius: 10px;
    }

        .bottom-pic img {
            width: 100%;
            height: 100%;
        }

    .bottom-text {
        margin-left: 70px;
        line-height: 80px;
        font-size: 16px;
        color: #fff;
    }

    .bottom-btn {
        position: absolute;
        top: 20px;
        right: 10px;
        height: 40px;
        line-height: 40px;
        color: #fff;
        background-color: #60b900;
        border-radius: 6px;
        text-align: center;
        font-size: 16px;
        padding: 0 5px;
        font-weight: bold;
    }

    .bottomAD a {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }

</style>
<div class="bottomAD" id="bottomAD">

    <div class="bottom-con">
        <div class="bottom-pic">
            <img src="https://pp.myapp.com/ma_icon/0/icon_54012733_1671788733/256" width="60" height="60" alt="">
        </div>
        <div class="bottom-text" id="bottomText">" 每天 3 次,领取最高 9999 元红包 </div>
            <div class="bottom-btn"> 立即领取 </div>
    </div>
     <a id="bottomLink" target="_blank" href="http://www.dongyao.ren/jd.php"></a>
</div>
正文完
加入官方交流QQ群:778957856
post-qrcode
 0
clark
版权声明:本站原创文章,由 clark 2023-01-04发表,共计1067字。
转载说明:除特殊说明外本站文章皆由CC-4.0协议发布,转载请注明出处。
评论(没有评论)