满屏飞舞的心HTML动画,CSS3制作蝴蝶飞舞动画

CSS3制作蝴蝶飞舞动画

body{

background-color: lightblue;

}

#container {

perspective: 600px;

perspective-origin: -20% 20%;

width: 850px;

height: 566px;

left: 300px;

top: 0px;

color: gray;

margin: 0px auto;

}

#butterfly {

transform: rotateZ(-30deg) rotate3d(0, 1, 0, 0deg) scale3d(0.5, 0.5, 0.5);

transform-origin: 51% 50%;

left: 0px;

top: 0px;

width: 400px;

height: 238px;

transform-style: preserve-3d;

/*Fly in a loop below*/

/*animation-name: butterflyani;

animation-duration: 5s;

animation-iteration-count: infinite;

animation-timing-function: linear;*/

}

.wing {

transform: rotateX(30deg)  translate3d(-200px, 0px, 0px) rotate3d(0, 1, 0, 160deg);

transform-origin: top right;

position: absolute;

left: 200px;

top: 0px;

width: 200px;

height: 238px;

background: url(butterfly.png) no-repeat;

animation-name: rightwingani;

animation-duration: 0.6s;

animation-delay: 2s;

animation-iteration-count: 4;

animation-timing-function: ease-out;

}

#butterfly .left{

transform: rotateX(30deg) rotate3d(0, 1, 0, 0deg);

animation-name: leftwingani;

left: 0px;

top: 0px;

}

@keyframes rightwingani {

from {

transform:rotateX(30deg) translate3d(-200px, 0px, 0px) rotate3d(0, 1, 0, 160deg);

}

50% {

transform:rotateX(30deg) translate3d(-200px, 0px, 0px) rotate3d(0, 1, 0, 100deg);

}

to{

transform:rotateX(30deg) translate3d(-200px, 0px, 0px) rotate3d(0, 1, 0, 160deg);

}

}

@keyframes leftwingani {

from {

transform:rotateX(30deg) rotate3d(0, 1, 0, 0deg);

}

50% {

transform:rotateX(30deg) rotate3d(0, 1, 0, 80deg);

}

to{

transform:rotateX(30deg) rotate3d(0, 1, 0, 00deg);

}

}

a {

font-size: 5.5em;

font-family: Arial;

text-decoration: none;

text-align: right;

color: teal;

letter-spacing: -2px;

position: relative;

top: -70%;

left: -9%;

width: 67%;

display: block;

line-height: 1.1em;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你好!要实现这个效果,可以通过CSS3动画来完成。 首先,我们需要创建一个钱袋和金币的图像,并将它们放在HTML中。然后,使用CSS设置它们的位置和样式。 接着,使用CSS3的@keyframes规则来定义一个动画。在这个动画中,我们将金币向上移动并旋转,然后让它们落入钱袋中。同时,我们可以添加一些随机的transform属性和延迟时间,以产生更加自然的效果。 最后,将动画应用到金币的class上,就可以看到金币飞舞到钱袋的效果了。 下面是示例代码: ``` .coin-container { position: relative; height: 200px; } .coin { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 50px; height: 50px; background-image: url('coin.png'); background-size: cover; } @keyframes coin { 0% { transform: translateX(-50%) rotate(0deg); } 50% { transform: translateX(-50%) translateY(-200px) rotate(360deg); } 100% { transform: translateX(calc(50% - 25px)) translateY(-300px) rotate(720deg); } } /* 随机transform属性和延迟时间 */ .coin:nth-child(1) { animation: coin 2s ease-in-out 0s infinite; } .coin:nth-child(2) { animation: coin 2s ease-in-out 0.1s infinite; } .coin:nth-child(3) { animation: coin 2s ease-in-out 0.2s infinite; } .coin:nth-child(4) { animation: coin 2s ease-in-out 0.3s infinite; } ``` 以上代码将创建一个高度为200px的容器,其中包含4个金币。每个金币都将使用coin类来设置样式,并应用coin动画。在coin动画中,金币将在2秒钟内向上移动并旋转,最终落入钱袋中。每个金币的动画延迟时间和transform属性都是随机的,以使效果更加自然。 当然,你需要将代码中的图片路径更改为你自己的图片路径。希望这能帮到你!

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值