svg+css实现逼真好看的图片颗粒状阴影效果代码

代码语言:html

所属分类:布局界面

代码描述:svg+css实现逼真好看的图片颗粒状阴影效果代码

代码标签: svg css 逼真 好看 图片 颗粒状 阴影

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

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">




    <style>
        html {
          display: grid;
          min-height: 100%;
        }
        
        body {
          place-self: center;
          background: #212121;
          text-align: center;
          text-wrap: balance;
        }
        
        svg[aria-hidden=true] {
          position: fixed;
        }
        
        img {
          margin: 2.5em;
          width: clamp(8em, 16vw, 32em);
          aspect-ratio: 1;
          border-radius: 0.375em;
          box-shadow: 1px 1px #000c;
          filter: url(#shadow);
        }
    </style>


</head>

<body translate="no">
    <svg aria-hidden="true">
  <filter id="shadow" x="-100%" y="-100%" width="300%" height="300%" color-interpolation-filters="sRGB" primitiveUnits="obj.........完整代码请登录后点击上方下载按钮下载查看

网友评论0