代码之家  ›  专栏  ›  技术社区  ›  tony95

CSS关键帧动画屏幕门效果[关闭]

  •  -2
  • tony95  · 技术社区  · 7 年前

    我已经实现了这个演示中的代码 https://tympanus.net/Tutorials/CSS3FullscreenSlideshow/index.html

    Sky in photo is high detail but pixilated on background

    在我的照片中,天空是清澈的,但在页面上呈现为大圆点(见图)。

    1 回复  |  直到 7 年前
        1
  •  0
  •   im_benton    7 年前

    这是我在你发布的链接上看到的一些代码,它负责纹理。

    .cb-slideshow:after {
        content: '';
        background: transparent url(../images/pattern.png) repeat top left;
    }
    
    .cb-slideshow:after {
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0px;
        left: 0px;
        z-index: 0;
    }