×

CSS3:实现三维空间的叠加效果

作者:ceshi2018.12.28来源:Web前端之家浏览:14328评论:0
关键词:CSS3叠加

晚上闲着没事,看到了一个不错的效果,用CSS3实现三维空间的叠加效果,分享出来给大家,一起学习下。先看下效果图:

图片.png

接下来,直接贴上代码:

<!DOCTYPE html>
<html>
<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>CSS3实现3D叠层效果</title>
    <style>
        body{
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .container{
            position: relative;
            width: 360px;
            height: 640px;
            background: rgba(0,0,0,.1);
            transform: rotate(-30deg) skew(25deg) scale(.7);
            transition:.3s;
        }

        .container img{
            position: absolute;
            width: 100%;
            transition: .5s;
        }

        .container:hover img:nth-child(4){
            transform: translate(160px,-160px);
            opacity: 1;
        }

        .container:hover img:nth-child(3){
            transform: translate(120px,-120px);
            opacity: .8;
        }

        .container:hover img:nth-child(2){
            transform: translate(80px,-80px);
            opacity: .5;
        }
        .container:hover img:nth-child(1){
            opacity: .4;
            transform: translate(40px,-40px);
        }

    </style>
</head>
<body>
    <div class="container">
        <img src="https://123p1.sogoucdn.com/imgu/2018/12/20181211151344_369.jpg" >
      <img src="https://123p1.sogoucdn.com/imgu/2018/12/20181211151344_369.jpg" >
      <img src="https://123p1.sogoucdn.com/imgu/2018/12/20181211151344_369.jpg" >
      <img src="https://123p1.sogoucdn.com/imgu/2018/12/20181211151344_369.jpg" >
    </div>
</body>
</html>

OK,大家去看下代码吧,是不是很牛逼,学到了吧。

您的支持是我们创作的动力!
温馨提示:本文作者系 ,经Web前端之家编辑修改或补充,转载请注明出处和本文链接:
https://www.jiangweishan.com/article/css2324234643634.html

网友评论文明上网理性发言 已有0人参与

发表评论: