美文网首页
css一段近大远小效果代码

css一段近大远小效果代码

作者: nickNic | 来源:发表于2019-08-02 14:37 被阅读0次
    屏幕快照 2019-08-02 下午2.35.50.png
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    
    <style>
    *{
      padding: 0px;
      margin: 0px;
    
    }
    
    div{
      width: 300px;
      height: 500px;
      background: red;
      margin: 100px auto;
      text-align: center;
      perspective: 500px;
    
    }
    
    span{
      width: 300px;
      height: 500px;
      background: yellow;
      display: inline-block;
      transition: transform,0.8s;
      transform-origin: center bottom;
    
    }
    
    span:hover{
      transform: rotateX(60deg);
    
    
    }
    
    
    </style>
    
    </head>
    <body>
    
    
    <div>
    <span>
    
    </span>
    
    
    </div>
    
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:css一段近大远小效果代码

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