js代码|修改网站鼠标外形(js如何改变鼠标的样式)

时间:2021-09-13 10:52:31   阅读:1015
 <style>
     /*鼠标外型*/
	body{background-color: #1D1D1D}
html {
    cursor: url('http://www.clxsite.cn/favicon.ico'), auto;
}
.draw {
    position: fixed;
    width: 1px;
    line-height: 1px;
    pointer-events: none;
}
@keyframes floatOne {
0% {
opacity:1;
}
50% {
opacity:1;
}
100% {
opacity:0;
transform:translate3D(0, -20px, 0) scale(5) rotate(45deg);
}
}
</style>


js代码|修改网站鼠标外形(js如何改变鼠标的样式)

上一篇:代码|获取当前网站链接代码(获取当前网址代码)

下一篇:自动生成CSS按钮 Button Generator: Create HTML and CSS Button Styles

网友评论