• 图片飞出效果


    <!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>
          * {
            margin: 0px;
            padding: 0px;
          }
          div {
             100px;
            height: 150px;
          }
          div.boll {
            border: 1px solid red;
             300px;
            height: 300px;
            background-color: silver;
            margin: 0 auto;
            padding-top: 20px;
          }
          .boll .box {
            background-color: white;
            /* 块元素的垂直布局变为水平布局 */
            float: left;
            /* 过渡时间为2秒 */
            transition: all .2s;
          }
          .boll .box1 {
            background-color: white;
            /* 块元素的垂直布局变为水平布局 */
            float: left;
            margin-left: 5px;
            transition: all .3s;
          }
          .box1:hover, .box:hover {
            transform: translateY(-3px);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          }
        </style>
      </head>
      <body>
        <div class="boll">
          <div class="box"></div>
          <div class="box1"></div>
        </div>
      </body>
    </html>
  • 相关阅读:
    Analyzing the Go runtime scheduler from source code perspective
    golang教材
    Kafka#4:存储设计 分布式设计 源码分析
    机器学习应该准备哪些数学预备知识?
    Why does deep learning work?
    Deep Reinforcement Learning
    How do I learn machine learning?
    What are some good books/papers for learning deep learning?
    why deep learning works
    AI 名校课程&书籍 需要学习
  • 原文地址:https://www.cnblogs.com/kukai/p/12322600.html
Copyright © 2020-2023  润新知