珍藏魔力宝贝Ⅰ 和 Ⅱ 的游戏鼠标光标,年度久远的东西,互联网几乎绝迹,可作电脑光标方案或网站光标方案。
🔰魔力迷必备!
下载地址:点击下载
一、电脑win端安装方法:
1、解压缩后右键点击ConcertoGate.inf,选择“安装”。
2、之后在“开始->控制面板->鼠标->指针->方案”处选择“ConcertoGate”即可。
二、Typecho博客安装方法:
- 准备直连链接的Cur格式光标图片(光标.cur)
代码
body{ cursor:url(https://直连网址/default.cur),default; } a:hover{ cursor:url(https://直连网址/pointer.cur),pointer; }
- 放到合适的css样式中。
如我的博客,主题header.php文件当中,找到body样式并插入
body{ background-image: url('<?php $this->options->BackGround(); ?>')!important; background-position: bottom left; background-repeat: no-repeat; background-attachment: fixed; background-color: #dfedf3; cursor:url(https://bafybeihcgmht7c2jskrumtid3ddjc5eq3sttrjplc3i5njet4db5ikwsre.ipfs.dweb.link/),default !important; } a:hover { cursor: url("https://bafybeic3yvrsfyjotejkb72xttf7rloh22fdgy7qjpie4eyedy6tgaoj5u.ipfs.dweb.link/"), pointer !important; }
- default(默认光标)、pointer(手型选择光标)、!important(优先显示)