用css3做出简单动画:跳动的心
Posted zqcatc
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用css3做出简单动画:跳动的心相关的知识,希望对你有一定的参考价值。
代码:
<style>
div {
width: 300px;
height: 250px;
overflow: hidden;
margin: 200px auto;
}
div img {
width: 100%;
height: auto;
}
div img:hover {
animation: suo 1s infinite;
}
@keyframes suo {
0% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
100% {
transform: scale(1);
}
}
</style>
以上是关于用css3做出简单动画:跳动的心的主要内容,如果未能解决你的问题,请参考以下文章