原生JS实现鼠标滑动撒爱心特效
短信预约 -IT技能 免费直播动态提醒
本文实例为大家分享了一个鼠标滑动撒爱心的js特效,效果如下:
以下是代码实现,欢迎大家复制粘贴和收藏。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>原生JS实现鼠标滑动撒爱心特效</title>
<style>
* {
margin: 0;
padding: 0;
font-family: '微软雅黑', sans-serif;
}
body {
height: 100vh;
background: #000;
overflow: hidden;
}
span {
position: absolute;
background: url(heart.png);
pointer-events: none;
width: 100px;
height: 100px;
background-size: cover;
transform: translate(-50%, -50%);
animation: animate 2s linear infinite;
}
@keyframes animate {
0% {
transform: translate(-50%, -50%);
opacity: 1;
filter: hue-rotate(0deg);
}
100% {
transform: translate(-50%, -1000%);
opacity: 0;
filter: hue-rotate(360deg);
}
}
</style>
</head>
<body>
<script>
document.addEventListener('mousemove', (e) => {
let body = document.querySelector('body')
let heart = document.createElement('span')
let x = e.offsetX
let y = e.offsetY
heart.style.left = x + 'px'
heart.style.top = y + 'px'
let size = Math.random() * 100
heart.style.width = size + 'px'
heart.style.height = size + 'px'
body.appendChild(heart)
setTimeout(() => {
heart.remove()
}, 3000)
})
</script>
</body>
</html>
以下是上面代码中引入的图片heart.png
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341