本文介绍: 关于html + css 的小案例

学习html5 和css3的时候用到动画效果animation

具体步骤是:

  1. 定义一个盒子boxboxcontent 代表小球,circle代表小洞。。

    <div class="box">
        <div class="box-content left"></div>
        <div class="circle left1"></div> 
    </div&gt;

2. 设置外层盒子样式采用display属性,以列的形式进行排序。。

内部元素位置底部对齐

      .box {
            width: 100px;
            height: 300px;
            /* border: 1px solid #000; */
            margin:0 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
        }

3. 设置小球样式宽高各为50px边框弧度为百分之50,背景颜色渐变色

     .box-content {
            width: 50px;
            height: 50px;
            /* border: 1px solid #000; */
            border-radius: 50%;
            /* margin: 20px auto; */
            background: linear-gradient(0deg,blue,red);
            box-shadow: 0 0 5px  rgba(0,0,0,0.5);
            animation: animal 2s infinite alternate linear;
      }

4.设置circle样式

.circle{
            width: 50px;
            height: 10px;
            background-color: rgba(0,0,0,0.5);
            border-radius: 50%;
            animation: animal1 2s infinite alternate linear;
}

5.设置动画效果

        /* 小洞的动画效果 */
        @keyframes animal1 {
              0% {
                 transform: scale(1.2);
              }
              100% {
                transform: scale(0.5);
              }
        }
        /*小球的动画效果 */
        @keyframes animal {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-250px);
            }
        }

效果如下

全部代码如下

<!DOCTYPE html&gt;
<html lang="en"&gt;
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
        }
        body {
            width: 100vw;
            height: 100vh;
            display: flex;
            /* justify-content: flex-end; */
            justify-content: center;
            align-items: center;
        }
        .box {
            width: 100px;
            height: 300px;
            /* border: 1px solid #000; */
            margin:0 auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            align-items: center;
        }
        .box-content {
            width: 50px;
            height: 50px;
            /* border: 1px solid #000; */
            border-radius: 50%;
            /* margin: 20px auto; */
            background: linear-gradient(0deg,blue,red);
            box-shadow: 0 0 5px  rgba(0,0,0,0.5);
            animation: animal 2s infinite alternate linear;
        }
        
        .box .left {
            background: linear-gradient(0deg,rgb(0, 255, 170),rgb(0, 162, 255));
            animation-duration: 800ms;
        }
        .box .left1 {
            animation-duration: 800ms;
        }
        .box .right {
            background: linear-gradient(0deg,rgb(208, 255, 0),rgb(255, 0, 230));
            animation-duration: 1s;
            /* animation-delay: 50ms; */
        }
        .box .right1 {
             animation-duration: 1s;
        }
        .circle{
            width: 50px;
            height: 10px;
            background-color: rgba(0,0,0,0.5);
             border-radius: 50%;
             animation: animal1 2s infinite alternate linear;
        }
        /* 小洞的动画效果 */
        @keyframes animal1 {
              0% {
                 transform: scale(1.2);
              }
              100% {
                transform: scale(0.5);
              }
        }
        /*小球的动画效果 */
        @keyframes animal {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-250px);
            }
        }
    </style>
</head>
<body>
    <div class="box">
        <div class="box-content left"></div>
        <div class="circle left1"></div> 
    </div>
    <div class="box">
        <div class="box-content"></div>
        <div class="circle"></div>
    </div>
    <div class="box">
        <div class="box-content right"></div>
        <div class="circle right1"></div>  
    </div>
</body>
</html>

原文地址:https://blog.csdn.net/weixin_46378070/article/details/129164059

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_32124.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注