欢迎来到 HiMCBBS 论坛~

想在这里休息会么?和我们共度美好时光吧~

加入QQ群:879016948 获得最新公告,并与群友们一起聊天吹水!

注册 登录
  1. 为您的Astro站点Card添加鼠标跟随动效

    软件资源 为您的Astro站点Card添加鼠标跟随动效

    实现原理 在相关代码中,我们会使用源自 astro 官方的 JS 库 astrojs/solid-js 和 solid-js 。 实现这个动效很简单,这仅是一个 React 组件,用于处理鼠标移动事件,并根据鼠标的位置动态设置 Card 的 CSS 变量,从而实现光晕跟随鼠标移动的交互效果。 步骤 创建 src/components/ScriptComp.tsx ,写入以下内容 import type { Component } from "solid-js"; export const ScriptComp: Component = () => { const...
  2. 元旦到了,来给你的网站加个灯笼吧~

    软件资源 元旦到了,来给你的网站加个灯笼吧~

    ↑效果 代码如下: <script> (function () { 'use strict'; function styleInject(css) { if (!css || typeof document === 'undefined') return; const style = document.createElement('style'); style.type = 'text/css'; document.head.appendChild(style)...
后退
顶部