zoukankan      html  css  js  c++  java
  • 透视图的设置

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Document</title>
        <style>
            html{
                /* 设置当前网页的视距为800px, 人眼距离网页的距离*/
                perspective: 800px;
            }
            body{
                background-color: silver;
                border:1px solid red;
            }
            .box{
                 100px;
                height: 100px;
                background-color: springgreen;
                margin: 200px auto;
                /* 设置所有属性的过渡时间为1s */
                transition: all 1s;
            }
            body:hover .box{
                /* z轴的向上偏移500px */
                transform:translateZ(500px);
            }
        </style>
    </head>
    <body>
        <div class="box"></div>
    </body>
    </html>
  • 相关阅读:
    Expectation Maximization Algorithm
    Cramer-Rao Bounds (CRB)
    宽带DOA估计方法
    Statistical Methods for Machine Learning
    Bootstrap Method
    算法学习————猫树
    扩展KMP详解
    网络流的模型和应用
    [CQOI2011]动态逆序对
    CF1278F Cards
  • 原文地址:https://www.cnblogs.com/kukai/p/12322813.html
Copyright © 2011-2022 走看看