美文网首页
镜像图片

镜像图片

作者: Nick_4438 | 来源:发表于2021-02-04 16:18 被阅读0次

    简介

    本文介绍如何镜像图片以及100%拉伸显示图片背景

    代码

    <html>
        <head>
            <title>
           
            </title>
            <style type="text/css">
             .bodyClass{
                    display: flex;
                    flex-direction: row;
                }
                </style>
        </head>
        <body >
            <div class="bodyClass">
                <div style="width: 200px;height: 300px;
                    background: url(./9f6c9715ecdd35f2fa03a2524de387bf.png) center center / 100% 100% no-repeat ;">
                </div>
    
                <div style="width: 200px;height: 300px;    transform: rotateY(
                    180deg
                    );
                    background: url(./9f6c9715ecdd35f2fa03a2524de387bf.png) center center / 100% 100% no-repeat ;">
    
                </div>
            </div>
    
        </body>
    </html>
    

    100%拉伸平铺显示:background: url(./9f6c9715ecdd35f2fa03a2524de387bf.png) center center / 100% 100% no-repeat ;
    镜像: transform: rotateY(180deg);

    相关文章

      网友评论

          本文标题:镜像图片

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