跳动的心纯HMTL

Web前段基础

HTML02-跳动的心动画效果图

跳动的心
此页面包含的知识点:

  1. 运动曲线:
    linear 匀速
    ease-in 慢进快出(由慢到快)
    ease-in-out 慢进慢出(由慢到快再有快到慢)
    alternate 动画往返

  2. 动画效果:
    animation:scale(动画名称) 1s(执行时长) 0.2s(延迟时间) linear(运动曲线) infinite(运动次数) alternate(往返);
    @keyframe 动画名称{
    0%{}
    100%{}
    }

    <style>
        .square{
            width:200px;
            height:200px;
            background-color:red;
            margin:200px auto 0 auto;
            position:relative;
            /* transform:rotate(45deg);
            transform:scale(0.5); */
            transform:rotate(45deg) scale(0.5);
            animation:scale 1s ease-in infinite alternate;
        }
        @keyframes scale{
            0%{
                transform:rotate(45deg) scale(0.5);
            }100%{
                transform:rotate(45deg) scale(1);
            }
        }
        .circle{
            width:200px;
            height:200px;
            background-color:red;
            border-radius:50%;
            position:absolute;
        }
        .circleTop{
            top:-100px;
        }
        .circleLeft{
            left:-100px;
        }
    </style>
</head>
<body>
    <div class="square">
        <div class="circle circleTop"></div>
        <div class="circle circleLeft"></div>
    </div>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值