美文网首页
css3锯齿背景很赞

css3锯齿背景很赞

作者: 放下手机出来嗨 | 来源:发表于2019-06-06 10:55 被阅读0次
<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
        <style>
            * {margin: 0; padding: 0;}

body {
    background: #B1d202;
    padding: 100px;
    text-align: center;
}

.stamp {
    width: 280px;
    height: 180px;
    display: inline-block;
    padding: 10px;
    background: white;
    position: relative;
    -webkit-filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.5));
    /*The stamp cutout will be created using crisp radial gradients*/
    background: radial-gradient(
        transparent 0px, 
        transparent 4px, 
        white 4px,
        white
    );

    /*reducing the gradient size*/
    background-size: 20px 20px;
    /*Offset to move the holes to the edge*/
    background-position: -10px -10px;
}
.stamp:after {
    content: '';
    position: absolute;
    /*We can shrink the pseudo element here to hide the shadow edges*/
    left: 5px; top: 5px; right: 5px; bottom: 5px;
    /*Shadow - doesn't look good because of the stamp cutout. We can still move this into another pseudo element behind the .stamp main element*/

  /*box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.5);*/
    /*pushing it back*/
    z-index: -1;
}
/*Some text*/

        </style>
    </head>
    <body>
    <div class="stamp">
        <!-- the image -->
        <img src="http://thecodeplayer.com/uploads/media/css3logo.png" />
    </div>

    </body>
</html>

相关文章

  • css3锯齿背景很赞

  • swift3.0 画锯齿视图

    画锯齿图在drawrect方法里进行: 外部设置参数锯齿个数,view的背景色,锯齿的背景色,锯齿的高度等 然后通...

  • CSS3 背景

    知识点: CSS3 背景图像区域CSS3 背景图像定位CSS3 背景图像大小CSS3 多重背景图像CSS3 背景属...

  • 前端技术前沿5

    CSS3 背景CSS3 包含多个新的背景属性,它们提供了对背景更强大的控制。 background-sizebac...

  • CSS3 背景

    CSS3 背景 CSS3中包含几个新的背景属性,提供更大背景元素控制。在本章您将了解以下背景属性: backgro...

  • CSS3 背景

    1、CSS3 背景 CSS3中包含几个新的背景属性,提供更大背景元素控制。 在本章您将了解以下背景属性: back...

  • CSS背景

    CSS3 背景 CSS3 包含多个新的背景属性,它们提供了对背景更强大的控制。 在本章,您将学到以下背景属性: b...

  • 让•弗朗索瓦•米勒 技法分析(1)

    一、用简单的线条表现复杂背景比如: 用锯齿和锯齿叠加概括草地,长草用锯齿,短草用短线扇,草丛用叠加 当然简单的同时...

  • Real-time Rendering 第五章 渲染基础(下)

    5.4 锯齿与抗锯齿——Aliasing and Antialiasing 想象一个大的黑色三角面片在白色背景上缓...

  • 让页面的字体变得更清晰(css实现)和使用css样式布局价格划线

    css3属性-webkit-font-smoothing   对字体进行抗锯齿渲染可以使字体看起来会更清晰舒服。在...

网友评论

      本文标题:css3锯齿背景很赞

      本文链接:https://www.haomeiwen.com/subject/obclxctx.html