- 影力星球 - 图片模糊 -

image.png
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style media="screen">
        body {
            background-color: #1E1F33
        }

        .box {
            position: relative;
        }

        img.top {
            width: 280px;
            height: 400px;
            position: absolute;
            top: 100px;
            left: 300px;
            z-index: 1;

        }

        img.bottom {
            width: 240px;
            height: 400px;
            position: absolute;
            top: 140px;
            left: 320px;

            filter: url(blur.svg#blur);
            /* FireFox, Chrome, Opera */
            -webkit-filter: blur(30px);
            /* Chrome, Opera */
            filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius=10, MakeShadow=false);
            /* IE6~IE9 */
        }
    </style>
</head>

<body>
    <div class="box">
        <img class="top" src="sha.jpeg" alt="">
        <img class="bottom" src="sha.jpeg" alt="">
    </div>
</body>

</html>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容