前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >背景图片加蒙版,里面内容不受影响

背景图片加蒙版,里面内容不受影响

作者头像
风花一世月
发布2024-03-19 13:05:41
750
发布2024-03-19 13:05:41
举报
文章被收录于专栏:前端前端
代码语言:text
复制
<template>
    <div class="select-bg">
        <div class="select-box">
            <div class="btn-box">
                <button class="select-btn black">项目看板</button>
                <button class="select-btn blue">系统设置</button>
            </div>
        </div>
    </div>
</template>

代码语言:javascript
复制
<style lang="scss"  scoped>
    .select-bg{
        height: 100%;
        background: url(https://mobile-i-uj.oss-cn-hangzhou.aliyuncs.com/zhdt/static/images/select-bg.jpeg) no-repeat center;
        background-size: 100% 100%;
        min-width: 968px;
        &::before{
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background-color: rgba(255,255,255, .5);
            z-index: 1;
        }
        .select-box{
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            margin: auto;
            z-index: 3;
            display: flex;
            align-content: center; 
            justify-content: center; 
            .btn-box{
                display: flex;
                flex-direction: column;
                justify-content: center;
                .select-btn{
                    border: none;
                    color: #fff;
                    width: 500px;
                    height: 90px;
                    border-radius: 5px;
                    font-size: 38px;
                    font-weight: bold;

                    &:nth-of-type(1){
                        margin-bottom: 50px;
                    }
                    &.black{
                        background-color: #000000;
                    }
                    &.blue{
                        background-color: #169bd5;
                    }
                }
            }
        }
    }
</style>
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2021-04-07,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
相关产品与服务
腾讯云 BI
腾讯云 BI(Business Intelligence,BI)提供从数据源接入、数据建模到数据可视化分析全流程的BI能力,帮助经营者快速获取决策数据依据。系统采用敏捷自助式设计,使用者仅需通过简单拖拽即可完成原本复杂的报表开发过程,并支持报表的分享、推送等企业协作场景。
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档