自定义鼠标样式

Posted dzzzz

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义鼠标样式相关的知识,希望对你有一定的参考价值。

效果图展示:

技术分享图片

代码 :

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<style>


    .myscroll::-webkit-scrollbar {
        /*滚动条整体样式*/
        width: 10px;
        /*高宽分别对应横竖滚动条的尺寸*/
        height: 1px;
    }

    .myscroll::-webkit-scrollbar-thumb {
        /*滚动条里面小方块*/
        border-radius: 10px;
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        background: #535353;
    }

    .myscroll::-webkit-scrollbar-track {
        /*滚动条里面轨道*/
        -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        background: #EDEDED;
    }
</style>

<body class="myscroll">
    <div style="height:1000px;">

    </div>

</body>

</html>

 

以上是关于自定义鼠标样式的主要内容,如果未能解决你的问题,请参考以下文章

VS Code中自定义Emmet代码片段

cursor url 自定义鼠标样式

自定义cursor鼠标 图片

自定义cursor鼠标 图片

Android:系统添加自定义鼠标样式并通过按键切换

HTML代码片段