首页 > web前端 > js教程 > 正文

使用 CSS Keyframe 动画和 JavaScript 实现箭头碰撞效果

DDD
发布: 2025-09-11 21:23:15
原创
441人浏览过

使用 css keyframe 动画和 javascript 实现箭头碰撞效果

本文将指导你如何使用 CSS Keyframe 动画和 JavaScript创建一个箭头移动并碰撞圆形,然后改变圆形颜色的效果。我们将详细讲解 HTML 结构,CSS 样式以及 JavaScript 逻辑,并提供完整的代码示例,帮助你理解和实现该动画效果。

HTML 结构

首先,我们需要创建包含圆形和箭头的 HTML 结构。使用 div 元素来表示圆形和箭头,并将它们放置在一个容器中。

<!DOCTYPE html>
<html>
<head>
  <title>Arrow Collision Animation</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div id="container">
    <div id="circle"></div>
    <div id="arrow"></div>
  </div>

  <button id="hitButton" class="button">Hit</button>
  <button id="clearButton" class="button">Clear</button>

  <script src="script.js"></script>
</body>
</html>
登录后复制

在这个结构中:

  • container div 用于包含圆形和箭头。
  • circle div 表示圆形。
  • arrow div 表示箭头。
  • hitButton 和 clearButton 按钮分别用于触发动画和重置动画。
  • style.css是用于存放css样式的文件
  • script.js是用于存放js代码的文件

CSS 样式

接下来,我们使用 CSS 来设置圆形和箭头的样式,包括位置、大小、颜色等。

立即学习Java免费学习笔记(深入)”;

/* style.css */
#container {
  position: relative;
  width: 300px;
  height: 150px;
}

#circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: blue;
  transition: background-color 0.5s;
}

#arrow {
  position: absolute;
  top: 50%;
  left: 250px;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 10px;
  background-color: black;
  transition: left 0.5s;
}

#arrow:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 10;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid black;
}

.button {
  margin-top: 10px;
}
登录后复制

关键样式解释:

  • position: absolute 用于定位圆形和箭头。
  • transform: translate(-50%, -50%) 用于将圆形和箭头的中心点对齐。
  • border-radius: 50% 使 circle 元素变成圆形。
  • transition 属性使颜色和位置的变化更加平滑。
  • #arrow:before 使用 CSS 伪元素创建一个箭头。

JavaScript 交互

现在,我们使用 JavaScript 来实现点击 "Hit" 按钮时,箭头移动到圆形并改变圆形颜色的效果。

火龙果写作
火龙果写作

用火龙果,轻松写作,通过校对、改写、扩展等功能实现高质量内容生产。

火龙果写作 106
查看详情 火龙果写作
// script.js
var circle = document.getElementById("circle");
var arrow = document.getElementById("arrow");
var hitButton = document.getElementById("hitButton");
var clearButton = document.getElementById("clearButton");

hitButton.addEventListener("click", function() {
  circleRight = circle.offsetLeft + circle.offsetWidth;
  arrowLeft = circleRight + arrow.offsetWidth - 10; //Adjusted to sub 10px 
  arrow.style.left = arrowLeft + "px";
  circle.style.backgroundColor = "green";
});

clearButton.addEventListener("click", function() {
  arrow.style.left = "250px";
  circle.style.backgroundColor = "blue";
});
登录后复制

JavaScript 代码解释:

  • 首先,获取圆形、箭头、"Hit" 按钮和 "Clear" 按钮的 DOM 元素。
  • 为 "Hit" 按钮添加点击事件监听器。
  • 在点击事件处理函数中,计算箭头应该移动到的位置,然后设置箭头的 left 样式属性,使其移动到该位置。
  • 同时,改变圆形的背景颜色为绿色。
  • 为 "Clear" 按钮添加点击事件监听器,用于重置箭头位置和圆形颜色。

完整代码

将上述 HTML、CSS 和 JavaScript 代码组合在一起,即可实现箭头碰撞圆形并改变颜色的动画效果。

HTML (index.html):

<!DOCTYPE html>
<html>
<head>
  <title>Arrow Collision Animation</title>
  <link rel="stylesheet" href="style.css">
</head>
<body>
  <div id="container">
    <div id="circle"></div>
    <div id="arrow"></div>
  </div>

  <button id="hitButton" class="button">Hit</button>
  <button id="clearButton" class="button">Clear</button>

  <script src="script.js"></script>
</body>
</html>
登录后复制

CSS (style.css):

#container {
  position: relative;
  width: 300px;
  height: 150px;
}

#circle {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translate(0, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: blue;
  transition: background-color 0.5s;
}

#arrow {
  position: absolute;
  top: 50%;
  left: 250px;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 10px;
  background-color: black;
  transition: left 0.5s;
}

#arrow:before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 10;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid black;
}

.button {
  margin-top: 10px;
}
登录后复制

JavaScript (script.js):

var circle = document.getElementById("circle");
var arrow = document.getElementById("arrow");
var hitButton = document.getElementById("hitButton");
var clearButton = document.getElementById("clearButton");

hitButton.addEventListener("click", function() {
  circleRight = circle.offsetLeft + circle.offsetWidth;
  arrowLeft = circleRight + arrow.offsetWidth - 10; //Adjusted to sub 10px 
  arrow.style.left = arrowLeft + "px";
  circle.style.backgroundColor = "green";
});

clearButton.addEventListener("click", function() {
  arrow.style.left = "250px";
  circle.style.backgroundColor = "blue";
});
登录后复制

注意事项

  • 确保 HTML 文件中正确引入 CSS 和 JavaScript 文件。
  • 可以根据需要调整 CSS 样式,例如修改颜色、大小、位置等。
  • JavaScript 代码中的位置计算可能需要根据实际情况进行调整。

总结

通过本教程,你学习了如何使用 CSS Keyframe 动画和 JavaScript 创建一个箭头移动并碰撞圆形,然后改变圆形颜色的效果。你了解了 HTML 结构、CSS 样式以及 JavaScript 逻辑,并获得了完整的代码示例。希望本教程能帮助你更好地理解和应用 CSS 动画和 JavaScript 交互。

以上就是使用 CSS Keyframe 动画和 JavaScript 实现箭头碰撞效果的详细内容,更多请关注php中文网其它相关文章!

最佳 Windows 性能的顶级免费优化软件
最佳 Windows 性能的顶级免费优化软件

每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号