网站首页
编程语言
数据库
系统相关
其他分享
编程问答
cursorFollower
2024-12-08
写一个鼠标跟随的特效
//获取鼠标跟随的元素constcursorFollower=document.createElement('div');cursorFollower.id='cursor-follower';cursorFollower.style.position='fixed';cursorFollower.style.pointerEvents='none';//避免干扰其他元素的点击事件cursor