首 页 行业资讯 新车 试驾评测 养车用车 车型库

趣味运动会“疯狂毛毛虫”该怎么玩?

发布网友 发布时间:2022-04-23 14:43

我来回答

4个回答

懂视网 时间:2022-04-20 04:44

这次给大家带来毛毛虫爬行动画怎样实现,实现毛毛虫爬行动画的注意事项有哪些,下面就是实战案例,一起来看一下。

毛毛虫儿时大家都有见过,今天想起来写一个爬行的动作,具体代码如下所示:

html代码:

<p class='container'>
 <p class='hide left'></p>
 <p class='hide right'></p>
 <p class='hide bottom'></p>
 <p class='circle-container'>
 <p class='circle'></p>
 </p>
</p>

css代码:

 <style>
body {
 background-color: #1B6CB2;
 margin: 0;
}
.container {
 position: absolute;
 width: 600px;
 height: 400px;
 overflow: hidden;
 top: 50%;
 left: 60%;
 transform: translate(-50%, -50%);
}
.hide {
 height: 100%;
 width: 150px;
 background: #1B6CB2;
 position: absolute;
 z-index: 2;
}
.hide.left {
 left: 0;
}
.hide.right {
 right: 0;
}
.hide.bottom {
 bottom: 0;
 width: 100%;
 height: 50%;
}
.circle {
 position: absolute;
 height: 75px;
 width: 150px;
 border: 3px solid white;
 border-radius: 50%/100% 100% 0 0;
 border-bottom: none;
 top: 40%;
 left: 50%;
 transform-origin: 0% 50%;
 transform: translate(-50%, -50%);
 animation: magic 1.8s ease infinite;
}
@keyframes magic {
 0% {
 transform: rotate(-170deg) translate(-50%, -50%);
 }
 50% {
 transform: rotate(0deg) translate(-50%, -50%);
 }
 100% {
 transform: rotate(180deg) translate(-50%, -50%);
 }
}
.circle-container {
 position: absolute;
 height: 75px;
 width: 150px;
 top: 40%;
 left: 50%;
 transform-origin: 0% 50%;
 transform: translate(-50%, -50%);
 animation: power 1.8s ease-out infinite;
}
@keyframes power {
 0% {
 margin-left: 20px;
 }
 50% {
 margin-left: -55px;
 }
 99.9% {
 margin-left: -130px;
 }
 100% {
 margin-left: 20px;
 }
}
 </style>

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

前端技术实现文本文字纹理叠加

CSS3混合模式使用详解

热心网友 时间:2022-04-20 01:52

4—8人坐骑在充气毛毛虫道具上,队员双手握住毛毛虫的固定把手,毛毛虫道具前方立于起跑线后,裁判发令后,队员通过团队协调配合带动疯狂毛毛虫游戏道具在跑道上快速行驶。

裁判安排队员注意毛毛虫道具不带拖地行走,以防摩擦漏气损坏毛毛虫道具,赛道长度根据场地制定。以各参赛队员所用的毛毛虫道具触及终点线为计时停止,往返一次,用时最短者为胜。

扩展资料

充气毛毛虫游戏可以增加团队互动性强、具备富有挑战性、增强团队协作,从在日后的工作和学习中更具备合作能力。

相关规则:

1、必须选择相当大的场地,长度在100米以上为佳,宽度根据根据参赛人数制定,要求场地平整,尽量不要在水泥地或者柏油路上使用。

2、根据毛毛虫道具的座位数来制定参赛人数。

3、队员骑上毛毛虫游戏道具后,每位队员需紧抓左右两侧的把手,然后提起毛毛虫游戏道具,让毛毛虫游戏道具在不接地的情况下,快速抵达终点,先到者为胜。

热心网友 时间:2022-04-20 03:10

疯狂毛毛虫又称毛毛虫大比拼:队伍的所有伙伴模拟毛毛虫的爬行,在只有一双手和一双脚着地的情况下一起通过一段距离。哪个队伍最先到达就是冠军。

热心网友 时间:2022-04-20 04:44

又称毛毛虫大比拼:队伍的所有伙伴模拟毛毛虫的爬行,在只有一双手和一双脚着地的情况下一起通过一段距离。哪个队伍最先到达就是冠军。

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com