css+div实现一个电商优惠券效果代码

代码语言:html

所属分类:电商

代码描述:css+div实现一个电商优惠券效果代码

代码标签: css div 电商 优惠券

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>优惠券样式</title>
    <style>
        .coupon {
            width: 300px;
            padding: 20px;
            background: linear-gradient(135deg, #ff6f61, #ffcc00);
            color: #fff;
            text-align: center;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            display: none;
        }

        /* 锯齿边缘 */
        .coupon::before,
        .coupon::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #fff;
            border-radius: 50%;
        }

        .coupon::before {
            top: -10px;
            left: -10px;
        }

        .coupon::after {
            bottom: -10px;
            right: -10px;
        }

        /* 虚线分割线 */
        .coupon .divider {
            width: 100%;
            height: 1px;
            border-top: 2px dashed #fff;
            margin: 15px 0;
        }

        /* 优惠券内容 */
        .coupon h2 {
            font-size: 20px;
            margin: 0 0 10px;
        }

        .coupon p {
            font-size: 14px;
            margin: 5px 0;
        }

        .coupon .code {
            font-size: 18px;
            font-weight: bold;
            margin-top: 10px;
        }

        .coupon ..........完整代码请登录后点击上方下载按钮下载查看

网友评论0