首页>>新闻资讯>>经验教程

简单可用的H5手机版底部悬浮图片代码 可自适应

2024-03-27 19:14:39 151

简单可用的H5手机版底部悬浮图片代码 可自适应,

<div class="bottom-img">
    <img src="your-image-url.jpg" alt="底部悬浮图片">
</div>

<style>
    .bottom-img {
        position: fixed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: 9999;
        width: 100%;
        max-width: 400px;
        display: none;
    }
</style>

整个代码很简单简洁,直接可以用,分享给大家!