博客园或者自己网站添加鼠标指针样式

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jQuery鼠标指针特效 </title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Color Draw">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />

<style>
	body{background-color: #1D1D1D}
html {
    cursor: url('https://i.loli.net/2020/12/18/oInyiJQHecmOjCf.png'), 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>

</head>
<body>

上方的url 图片地址可用 https://sm.ms/   此网站来生成此照片网上的链接! 将本地图片拖入此网站中即可 !  别的网站亦可!

猜你喜欢

转载自blog.csdn.net/q1246192888/article/details/111396251