JS实现鼠标移入水波效果

前言
最近比较沉迷JS,所以我现在来做个鼠标的交互效果
HTML

<div style="border-radius;position:relative;width:800px;height:200px;background:#f7f7f7;display:block;position:fixed;left:35%;top:50%;overflow:hidden;padding:18px" id="AAC">
<p style="text-align:center;">
测试鼠标移入
</p>
</div>

JS

var A = document.querySelectorAll("#AAC")[0];
A.onmouseenter = function (e) {
this.innerHTML += ""
this.innerHTML += '<span style="border-radius:50px;position:absolute;display:block;background: #dcdcdc;width:50px;height:50px;left:' + e.offsetX + 'px;top:' + e.offsetY + 'px"></span>'
}
A.onmouseleave = function (e) {
for (var i = 0; i < document.querySelectorAll("#AAC span").length; i++) {
document.querySelectorAll("#AAC span")[i].remove();
}
}

完整代码

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
<style>
span {
animation:AAC linear 0.5s;
animation-fill-mode:forwards;
}
@keyframes AAC {
from {
}
to {
transform:scale(50);
}
}
p {
color:#3362b3;
font-size:14px;
position:absolute;
z-index:999;
transition:ease 0.5s;
}
</style>
</head>
<body>
<div style="border-radius;position:relative;width:800px;height:200px;background:#f7f7f7;display:block;position:fixed;left:35%;top:50%;overflow:hidden;padding:18px" id="AAC">
<p style="text-align:center;">
测试鼠标移入
</p>
</div>
<script>
var A = document.querySelectorAll("#AAC")[0];
A.onmouseenter = function (e) {
this.innerHTML += ""
this.innerHTML += '<span style="border-radius:50px;position:absolute;display:block;background: #dcdcdc;width:50px;height:50px;left:' + e.offsetX + 'px;top:' + e.offsetY + 'px"></span>'
}
A.onmouseleave = function (e) {
for (var i = 0; i < document.querySelectorAll("#AAC span").length; i++) {
document.querySelectorAll("#AAC span")[i].remove();
}
}
</script>
</body>
</html>

效果
在这里插入图片描述

后言
本文结束了,如果觉得本技术文章对你有帮助请给我点个赞,如果有什么不足的地方,给我提意见,让我加以改进

  LRolinx  阅读(241)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示