html好看鼠标光标特效

这篇具有很好参考价值的文章主要介绍了html好看鼠标光标特效。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

html好看鼠标光标特效 ,包括自定义鼠标指针图案,和自定义鼠标点击特效(鼠标点击出现爱心特效,每次颜色不一样。),好看的鼠标特效,好看的鼠标指针,自定义光标样式。


注意: Firefox/Mac, Safari/Mac, Chrome/Mac不支持PNG格式和JPG格式的图片光标。IE仅支持CUR格式的图片光标。
    因为图片的兼容性,所以推荐全局界面使用cur光标,单个容器,超链接可以使用图片光标。

1️⃣ 自定义鼠标指针图案

1.1 基本鼠标样式

css样式

body{
	cursor:pointer;//全局,手型光标样式
}

光标样式
html好看鼠标光标特效

1.2 自定义光标样式

1.2.1好看的自定义光标

上百个好看的光标,具体下载地址见文章结尾

html好看鼠标光标特效

1.2.2 html中使用自定义光标

图片分辨率建议32px

方案1:全局使用特定光标效果

body{
	cursor:url('图片地址'),auto;
}

方案1:标签使用特定光标效果

span{
	cursor:url(https://www.xcsharp.top/read/mycur.png),auto;
}

方案3:全局使用特定光标效果,网络url

body {
    cursor: url(https://www.xcsharp.top/read/mycur.cur),auto;
}

1.2.3 html中使用自定义光标效果

html好看鼠标光标特效

1.2.4 html中使用光标源码

<html>
<head>
<title>xcSharp博客</title>
<style type="text/css">
	body{
		<!--cursor:url('https://www.xcsharp.top/read/mycur.cur'),auto;-->
		cursor:url('https://www.xcsharp.top/read/mycur.png'),auto;
		padding:0px;margin:0px;
	}
	div{cursor:url('cursor1.png'),auto; width:calc(100% - 200px);height:calc(100% - 200px); position:absolute; background-color:orange;}
</style>
</head>
<body>
	<div style="text-align:center;font-family:华文中宋;padding:100px;"> 自定义鼠标样式 </div>
</body>
</html>

2️⃣ 自定义鼠标点击特效

1.1 点击效果展示

    鼠标点击的时候出现爱心,每次点击的爱心颜色不一样,也可以使用自定义的图案。

html好看鼠标光标特效

1.2 点击特效代码

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>xcSharp博客</title>
<script type="text/javascript">
	    (function() {
        window.onclick = function(event) {
            var heart = document.createElement("b");
            heart.onselectstart = new Function('event.returnValue=false');
            document.body.appendChild(heart).innerHTML = "❤";
            heart.style.cssText = "position: fixed;left:-100%;";
            var f = 16, // 字体大小
                x = event.clientX - f / 2, // 横坐标
                y = event.clientY - f, // 纵坐标
                c = randomColor(), // 随机颜色
                a = 1, // 透明度
                s = 1.2; // 放大缩小
            var timer = setInterval(function() {
                if (a <= 0) {
                    document.body.removeChild(heart);
                    clearInterval(timer);
                } else {
                    heart.style.cssText = "font-size:16px;cursor: default;position: fixed;color:" + c + ";left:" + x + "px;top:" + y + "px;opacity:" + a + ";transform:scale(" + s + ");";
                    y--;
                    a -= 0.016;
                    s += 0.002;
                }
            }, 12)
        }
        // 随机颜色
        function randomColor() {

            return "rgb(" + (~~(Math.random() * 255)) + "," + (~~(Math.random() * 255)) + "," + (~~(Math.random() * 255)) + ")";

        }
    }());
</script>
</head>
<style type="text/css">
*{
  padding: 0;
  margin: 0;
}
.news {
  width: calc(100% - 50px);
  border: 1px solid gray;
  padding: 20px 15px ;
  margin: 10px;
}
.news h2{
  padding-bottom: 5px;
  color: orange;
  font-weight: bold;
}
.news ul{
   padding:5px 10px ;
   background: white;
}
.news ul li{
  list-style: none;
  height: 30px;
  line-height: 30px;
  border-bottom: 1px dashed gray;
  text-indent: 15px;
  font-size: 14px;
}
.news a{
  text-decoration: none;
  color: #06C;
}
.news a:hover{
  text-decoration: underline;
  color: red;
}
.bg{
  background-color:rgb(255,165,0,0.1);
}
.bg2{
  background-color:orange;
}
</style>

<body>

  <div class="news">
    <h2>最全的前后端资源源码  - 收藏</h2>
    <ul>
	<li class="bg2">
		<a href="https://blog.csdn.net/weixin_43151418/article/details/125411251" target="_blank">学生作业神器,好的资源代码,免费服务器部署,数据接口提供,源码下载</a> 
		<span style="float:right;margin-right:20px;color:green;">前端界面</span>
	</li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/125006351" target="_blank">★★★★☆【总览】程序员前端、后端资源合集</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124746163" target="_blank">★★★★☆【博主推荐】HTML制作一个美观的个人简介网页(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/125350141" target="_blank">★★★★☆【博主推荐】html好看的个人简历网页版(附源码)</a></li>
	   <li><a href="https://blog.csdn.net/weixin_43151418/article/details/125121535" target="_blank">★★★★☆【博主推荐】html好看的个人主页(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/125642161" target="_blank">★★★★☆【博主推荐】html好看的邀请函(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/125351391" target="_blank">★★★★☆【博主推荐】html好看的音乐播放器(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/125074948" target="_blank">★★★★☆【博主推荐】html好看的拼图小游戏(附源码)</a></li>
	   <li><a href="https://blog.csdn.net/weixin_43151418/article/details/125071751" target="_blank">★★★★☆【博主推荐】html好看的拼图验证码(附源码)</a></li>
       <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124710999" target="_blank">★★★★★【博主推荐】html界面绘制SVG图形(附源码)</a></li>
       <li><a href="https://blog.csdn.net/weixin_43151418/article/details/124686960" target="_blank">★★★★★【博主推荐】html操作SVG图(附源码)</a></li>
       <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124689160" target="_blank">★★★★★【博主推荐】html下拉框树形(附好看的登录界面)</a></li>
       <li><a href="https://blog.csdn.net/weixin_43151418/article/details/124684028" target="_blank">★★★★★【博主推荐】HTML5响应式手机WEB(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124627153" target="_blank">★★★★★【博主推荐】html后台管理系统框架(附源码)</a></li>
	   <li><a href="https://blog.csdn.net/weixin_43151418/article/details/124624827" target="_blank">★★★★☆【博主推荐】大数据可视化大屏(源码下载)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124888548" target="_blank">★★★★☆【博主推荐】html好看的列表滚动效果(附源码)</a></li>
	   <li><a href="https://blog.csdn.net/weixin_43151418/article/details/124839361" target="_blank">★★★★☆【博主推荐】html引用百度地图定位闪烁弹框树形(附源码) </a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124970985" target="_blank">★★★★☆【博主推荐】HTML酷炫动画表白求爱界面(附源码)</a></li>
	   
       <li class="bg2">
	   <a href="https://blog.csdn.net/weixin_43151418/article/details/124658533" target="_blank">★★★★★【博主推荐】JAVA SSM框架的后台管理系统(附源码)</a>
	   <span style="float:right;margin-right:20px;color:green;">JAVA后端资源</span>
	   </li>
       <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124986738" target="_blank">★★★★★【博主推荐】SpringBoot API接口对数据库增删改查,路由,TOKEN,WebSocket完整版(附源码)</a></li>
	   
       <li class="bg2">
	   <a href="https://blog.csdn.net/weixin_43151418/article/details/124799348" target="_blank">★★★★☆【博主推荐】C# Winform定时发送邮箱(附源码)</a>
	   <span style="float:right;margin-right:20px;color:green;">C#后端资源</span>
	   </li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124803795" target="_blank">★★★★☆【博主推荐】asp.net WebService 后台数据API JSON(附源码)</a></li>
	   <li><a href="https://blog.csdn.net/weixin_43151418/article/details/124847737" target="_blank">★★★★☆【博主推荐】C#生成好看的二维码(附源码)</a></li>
	   <li class="bg"><a href="https://blog.csdn.net/weixin_43151418/article/details/124986567	" target="_blank">★★★★☆【博主推荐】C#MVC列表实现增删改查导入导出曲线功能(附源码)</a></li>
	   
     </ul>
   </div>
</body>

</html>

源码下载

鼠标单击出现爱心,上百个好看的光标资源 点击下载


优质资源分享

🧡🧡🧡🧡🤍【总览】程序员前端、后端资源合集

🧡🧡🧡🧡🤍【源码】程序员优质资源汇总

🧡🧡🧡🧡🤍【博主推荐】JAVA SSM框架的后台管理系统(附源码)

🧡🧡🧡🧡🤍【博主推荐】SpringBoot API接口对数据库增删改查,路由,TOKEN,WebSocket完整版(附源码)

🧡🧡🧡🧡🤍【博主推荐】HTML制作一个美观的个人简介网页(附源码)

🧡🧡🧡🧡🤍【博主推荐】html好看的个人简历网页版(附源码)

🧡🧡🧡🧡🤍【博主推荐】html好看的个人主页(附源码)

🧡🧡🧡🧡🤍【博主推荐】html好看的邀请函(附源码)

🧡🧡🧡🧡🤍【博主推荐】html好看的音乐播放器(附源码)

🧡🧡🧡🧡🤍【博主推荐】html好看的拼图小游戏(附源码)

🧡🧡🧡🤍🤍【博主推荐】html好看的拼图验证码(附源码)

🧡🧡🧡🧡🧡【博主推荐】html界面绘制SVG图形(附源码)

🧡🧡🧡🧡🤍【博主推荐】html操作SVG图(附源码)

🧡🧡🧡🧡🤍【博主推荐】html下拉框树形(附好看的登录界面)

🧡🧡🧡🧡🤍【博主推荐】HTML5响应式手机WEB(附源码)

🧡🧡🧡🧡🤍【博主推荐】大数据可视化大屏(源码下载)

🧡🧡🧡🧡🧡【博主推荐】html引用百度地图定位闪烁弹框树形(附源码)

🧡🧡🧡🧡🤍【博主推荐】HTML酷炫动画表白求爱界面(附源码)


     💞 关注博主 带你实现畅游前后端

     🏰 加入社区 带你体验马航不孤单

     💯 神秘个人简介 带你体验不一样得介绍

     🎀 酷炫邀请函 带你体验高大上得邀请

     亲,码字不易,动动小手,欢迎 点赞 ➕ 收藏,如 🈶 问题请留言(评论),博主看见后一定及时给您答复,💌💌💌文章来源地址https://www.toymoban.com/news/detail-495421.html

到了这里,关于html好看鼠标光标特效的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 国庆发生的那些事儿------编写了炫酷的HTML动态鼠标特效,超级炫酷酷酷!

    国庆假期的欢乐,当然少不了编码爱好者!假期编写了炫酷的HTML动态鼠标特效,超级炫酷酷酷!让你的页面变得更加炫酷,让你的小伙伴们羡慕的大神编码!快来看看大神是如何编写的吧! HTML动态鼠标特效 效果图 动态鼠标效果.html mouse.js 效果图 炫酷的HTML动态鼠标特效,超

    2024年02月02日
    浏览(75)
  • python流星雨特效代码复制,python好看的流星雨代码

    大家好,小编为大家解答python流星雨特效代码需要什么模块的问题。很多人还不知道python流星雨特效代码微信,现在让我们一起来看看吧! hello,大家好,我是wangzirui32,今天我们来学习如何用Pygame制作一场漂亮的流星雨。 开始学习吧! 文章目录 前言 1. 素材图片 2. 项目结构

    2024年02月03日
    浏览(44)
  • c#图片作为鼠标光标

    图片转换为鼠标光标代码如下: 注意事项:图片尽量使用 png格式 (支持透明)  参考 如何管理鼠标指针 - Windows Forms .NET | Microsoft Learn https://learn.microsoft.com/zh-cn/dotnet/desktop/winforms/input-mouse/how-to-manage-cursor-pointer?view=netdesktop-8.0 特此记录 anlog 2024年1月10日

    2024年01月23日
    浏览(36)
  • unity如何锁定鼠标光标位置并且隐藏

    unity如何锁定鼠标光标位置并且隐藏?常见fps游戏需要这样的设定 Unity中隐藏鼠标光标的方法是使用 Cursor.visible 属性和 Cursor.lockState 属性。 要隐藏鼠标光标,可以将 Cursor.visible 属性设置为 false,同时将 Cursor.lockState 设置为 CursorLockMode.Locked,这将锁定鼠标在屏幕中央并隐藏光

    2024年02月08日
    浏览(40)
  • win11--鼠标-文本选择光标变成白色

    最近几天遇到一个很讨厌的问题,就是鼠标在选中文本或点击搜索框或url地址栏时,形如“I”的光标就会变成白色,与背景融为一体,找光标找到崩溃,导致搬砖的效率极低,后面就开始通过对鼠标的设置尝试解决此问题,坚持不懈地试了很多次才成功解决! 解决方法如下

    2024年02月11日
    浏览(43)
  • AutoHotkey配置鼠标光标在双屏幕之间瞬移

    使用双屏幕会带来两个问题:一个是窗口的切换移动不方便,另一个是鼠标的切换移动不方便。 如果需要将屏幕 A 的窗口快速移动到屏幕 B,可以用过 win + shift + 左右键来实现。 但是令人头疼的一个问题是鼠标还停留在屏幕 A,而鼠标在屏幕间的快速切换恰恰是一个更加急切

    2024年02月15日
    浏览(37)
  • 在Qt中设置鼠标光标形状的方法介绍

    本文主要介绍在 Qt 中设置鼠标光标形状的方法。 说明: 本文中的应用程序是面向 Windows 操作系统的; 本文中使用的 Qt Creator 版本号为:7.0.0; 本文中使用的 Qt 版本号为:5.14.2。 假设现在有一个类型为“QTextEdit”的组件“Nutation_ReadonlyArea”,现在想将要的效果是,当鼠标位

    2024年02月12日
    浏览(35)
  • win10 系统屏幕黑屏只有鼠标光标在动,问题解决

    输入:explorer.exe ,确定,没啥效果。(大多win10是没用的)不过可以尝试嘛)! 1、运行新任务----输入“cmd”—确定。 2、输入for %1 in (%windir%system32*.dll) do regsvr32.exe /s %1,回车 记住:(如下图:红色箭头出记得空格) 3、刷刷下来。。。,到这刷屏刷不动了,(重启)ctrl+al

    2024年02月09日
    浏览(50)
  • 好看的html登录界面,

    界面效果: 代码:

    2023年04月09日
    浏览(43)
  • C语言 实现带透明度的鼠标光标 .cur 编辑器

    操作参考:  .cur 鼠标光标编辑器-CSDN博客 增加了滑块修改透明度 有一个bug,就是取色在绘图板上取色时,取到的颜色的透明度是0,也就是说,同样的颜色,有的是透明出来的,有的就是本身的颜色。但是不打算改了,这样的具有启发的BUG就留作纪念,如果想取色带透明度,

    2024年04月27日
    浏览(33)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包