Javascript特效之鼠标悬停特效【css】

先看一看效果,是不是很炫酷啊??

HTML代码:

html 复制代码
<!DOCTYPE html>
<html>
  <head>
    <meta charset=""UTF-8"" />
    <title>CSS特效:鼠标悬停效果</title>
    <link rel=""stylesheet"" href=""style.css"" />
  </head>
  <body>
    <div class=""cursor""></div>
    <ul>
      <li><a href=""#"">每天嘻嘻哈哈</a></li>
      <li><a href=""#"">热爱生活,快乐成长</a></li>
      <li><a href=""#"">CSS特效:鼠标悬停效果</a></li>
    </ul>
    <script src=""script.js""></script>
  </body>
</html>

CSS代码如下:

css 复制代码
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #222;
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0;
    border-radius: 50%;
    background-color: #0f0;
    box-shadow: 0 0 5px #0f0,
    0 0 15px #0f0,
    0 0 30px #0f0,
    0 0 60px #0f0;
    transition: opacity 0.5s;
    z-index: 999;
}

body:hover .cursor {
    opacity: 1;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    list-style: none;
}

ul li {
    padding: 10px 0;
}

ul a {
    text-decoration: none;
    color: #bbb;
    cursor: none;
}

ul li span {
    font-size: 2.5em;
    letter-spacing: 0.05em;
    transition: 0.25s;
}

ul li:hover span {
    color: #0f0;
    text-shadow: 0 0 5px #0f0,
    0 0 15px #0f0,
    0 0 30px #0f0,
    0 0 60px #0f0,
    0 0 100px #0f0;
}

JavaScript代码如下:

javascript 复制代码
let cursor = document.querySelector("".cursor"");

document.addEventListener(""mousemove"", (e) => {
  cursor.style.left = `${e.pageX}px`;
  cursor.style.top = `${e.pageY}px`;
});

document.querySelectorAll(""ul a"").forEach((text) => {
  text.innerHTML = text.innerText
    .split("""")
    .map(
      (words, i) => `<span style=""transition-delay:${i * 30}ms"">${words}</span>`
    )
    .join("""");
});
相关推荐
niaiheni17 分钟前
PHP文件包含
开发语言·php
初次见面我叫泰隆18 分钟前
Qt——1、初识Qt
开发语言·c++·qt
Arms20629 分钟前
python时区库学习
开发语言·python·学习
梦65032 分钟前
Vue 单页面应用 (SPA) 与 多页面应用 (MPA) 对比
前端·javascript·vue.js
清铎37 分钟前
大模型训练_week3_day15_Llama概念_《穷途末路》
前端·javascript·人工智能·深度学习·自然语言处理·easyui
无名的小三轮41 分钟前
第二章 信息安全概述
开发语言·php
清水白石0081 小时前
深入 Python 对象模型:PyObject 与 PyVarObject 全解析
开发语言·python
岛泪1 小时前
把 el-cascader 的 options 平铺为一维数组(只要叶子节点)
前端·javascript·vue.js
独自破碎E1 小时前
说说Java中的反射机制
java·开发语言
一直都在5721 小时前
SpringBoot3 框架快速搭建与项目工程详解
java·开发语言