码迷,mamicode.com
首页 > 其他好文 > 详细

爱心动画练习

时间:2019-07-14 22:44:16      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:transform   练习   infinite   alter   size   lte   auto   float   border   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="简介">
<meta name=" keywords" content="关键字">

<title>love</title>
<style>
body {
background-color: #000;
}

* {
margin: 0;
padding: 0
}

.love {
width: 205px;
height: 205px;
margin: 100px auto;
animation: love 1s infinite alternate;
}

@keyframes love {
0% {
transform: scale(1);
}

100% {
transform: scale(1.5);
}
}

.left {
width: 150px;
height: 228px;
background-color: red;
float: left;
border-radius: 150px 150px 0 0;
transform: rotate(-45deg);
box-shadow: 0px 0px 200px red;
}

.right {
width: 150px;
height: 228px;
background-color: red;
float: left;
border-radius: 150px 150px 0 0;
transform: rotate(45deg);
margin-left: -95px;
box-shadow: 0px 0px 300px red;
}

</style>
</head>
<body>
<div class="love">
<div class="left"></div>
<div class="right"></div>
</div>
<p style="color: white; text-align: center; font-size: 50px;"></p>
</body>
</html>

爱心动画练习

标签:transform   练习   infinite   alter   size   lte   auto   float   border   

原文地址:https://www.cnblogs.com/mxblogs/p/11186162.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!