使用css动画实现心的跳动

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>心形动画代码-jq22.com</title>
<script src="js/jquery.min.js"></script>
<style>
body {
background:black;
}
.heart {
margin:100px auto;
width:200px;
height:200px;
/* border:1px solid #0094ff;
*/
position:relative;
animation-name:shake;
animation-duration:.5s;
animation-iteration-count:infinite;
}
.heart div {
/* border:1px solid #0094ff;
*/
width:100%;
height:100%;
position:absolute;
background:red;
animation-name:shadow;
animation-duration:.5s;
animation-iteration-count:infinite;
}
.topLeft,.topRight {
border-radius:100px 100px 0 0;
}
.topLeft {
transform:translate(-100px,0) rotate(-45deg);
}
.topRight {
transform:translate(100px,0) rotate(45deg);
}
.bottom {
transform: translate(0,113px) rotate(45deg) scale(.9,.9);
}
/* 定义动画 */

@keyframes shake {
from {
transform:scale(.9,.9);
}
to {
transform:scale(1.1,1.1);
}
}@keyframes shadow {
from {
}to {
box-shadow:0px 0px 50px red;
}
}</style>
</head>
<body>
<div class="heart">
<div class="topLeft"></div>
<div class="topRight"></div>
<div class="bottom"></div>
</div><script>
</script>
</body>
</html>

posted @ 2017-09-04 19:56  妮儿jk  阅读(463)  评论(0编辑  收藏  举报