css怎么使用磨砂背景

发布时间:2022-02-22 15:55:45 作者:iii
来源:亿速云 阅读:270

这篇文章主要介绍“css怎么使用磨砂背景”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“css怎么使用磨砂背景”文章能帮助大家解决问题。

代码实现

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Document</title>
        <style>
                    /**
                     * 设置背景图全屏覆盖及固定
                     * 设置内部元素偏移
                     */
                    body {
                        /*此处背景图自行替换*/
                        background: url(demo.jpg) no-repeat center center fixed;
                        background-size: cover;
                         min-height: 100vh;
                        box-sizing: border-box;
                        margin: 0;
                        padding-top: calc(50vh - 6em);
                        font: 150%/1.6 Baskerville, Palatino, serif;
                    }

                    /**
                     * 整体居中功能;
                     * 背景透明虚化
                     * 溢出隐藏
                     * 边缘圆角化
                     * 文字增加淡阴影
                     */
                    .description{
                        position: relative;
                        margin: 0 auto;
                        padding: 1em;
                        max-width: 23em;
                        background: hsla(0,0%,100%,.25) border-box;
                        overflow: hidden;
                        border-radius: .3em;
                        box-shadow: 0 0 0 1px hsla(0,0%,100%,.3) inset,
                                    0 .5em 1em rgba(0, 0, 0, 0.6);
                        text-shadow: 0 1px 1px hsla(0,0%,100%,.3);
                    }

                    /*使用滤镜模糊边缘*/
                    .description::before{
                        content: '';
                        position: absolute;
                        top: 0; right: 0; bottom: 0; left: 0;
                        margin: -30px;
                        z-index: -1;
                        -webkit-filter: blur(20px);
                        filter: blur(20px);
                    }
        </style>
    </head>
    <body>
        <p class="description">
        Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
        tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
        quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
        consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
        cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
        proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
        </p>
    </body>
</html>

总结

这种实现模式是考虑了性能来写的,以及维护上的考虑

/*分开写*/
background-color:#ff0;
background-image:url(background.gif);
background-repeat:no-repeat;
background-attachment:fixed;
background-position:0 0;
background-size:cover;

/*简写*/
background: #ff0 url(background.gif) no-repeat / fixed cover;
/*设置background-size必须用单斜杠隔开*/

关于“css怎么使用磨砂背景”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。

推荐阅读:
  1. css背景属性
  2. CSS控制背景

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

css

上一篇:CSS怎么更改选中文本的背景颜色

下一篇:CSS设置首行缩进的方法

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》