小程序模板:专业的小程序模板与静态模板分享平台
小程序
教程
搜索
当前位置 : 首页> 小程序教程> 微信小程序列表左滑删除效果

微信小程序列表左滑删除效果

WXML


JS


WXSS

.area{
    width: 750rpx;
    position: relative;
    height: 150rpx;
    .line{
        position: absolute;
        width: 690rpx;
        height: 1px;
        background: #ededed;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
    .item{
        width: 900rpx;
        height: 150rpx;
        display: flex;
        align-items: center;
        .item-left{
            width: 750rpx;
            margin-left: 30rpx;
        }
        .item-right{
            width: 140rpx;
            height: 150rpx;
            background: #ED6F20;
            color: #fff;
            line-height: 150rpx;
            text-align: center;
            border-radius: 0 10rpx 10rpx 0;
        }
    }}


联系客服 意见反馈

签到成功!

已连续签到1天,签到3天将获得积分VIP1天

知道了