这次给大家带来使用CSS实现乒乓球对打动画,使用CSS实现乒乓球对打动画的注意事项有哪些,下面就是实战案例,一起来看一下。
定义 dom,容器中包含左拍、小球和右拍:
<p class="court">
<p class="left-paddle"></p>
<p class="ball"></p>
<p class="right-paddle"></p>
</p>居中显示:
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(silver, dimgray);
}调整盒模型:
* {
box-sizing: border-box;
}画出球案:
.court {
width: 20em;
height: 20em;
color: white;
border: 1em solid currentColor;
}画出左拍:
.court {
position: relative;
}
.left-paddle
width: 1em;
height: calc(50% - 1em);
background-color: currentColor;
position: absolute;
top: 1em;
left: 1em;
}让左拍动起来:
.left-paddle {
animation: left-moving 1s linear infinite alternate;
}
@keyframes left-moving {
to {
transform: translateY(100%);
}
}类似地,画出右拍:
.right-paddle
width: 1em;
height: calc(50% - 1em);
background-color: currentColor;
position: absolute;
top: 1em;
left: 1em;
bottom: 1em;
right: 1em;
}类似地,让右拍动起来:
.right-paddle {
animation: right-moving 1s linear infinite alternate;
}
@keyframes right-moving {
to {
transform: translateY(-100%);
}
}画出小球:
.ball {
width: 100%;
height: 1em;
border-left: 1em solid currentColor;
position: absolute;
left: 2em;
top: calc(50% - 1.5em);
}让小球动起来:
.ball {
animation: bounce 1s linear infinite alternate;
}
@keyframes bounce {
to {
left: calc(100% - 3em);
}
}最后,重构一下左右拍的代码,合并共有属性:
.left-paddle,
.right-paddle {
width: 1em;
height: calc(50% - 1em);
background-color: currentColor;
position: absolute;
animation: 1s linear infinite alternate;
}
.left-paddle {
top: 1em;
left: 1em;
animation-name: left-moving;
}
.right-paddle {
bottom: 1em;
right: 1em;
animation-name: right-moving;
}大功告成!
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上就是使用CSS实现乒乓球对打动画的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号