CSS cursor customization

后端 未结 3 1807
遥遥无期
遥遥无期 2020-12-12 03:53

I\'m trying to make a CSS code that changes the cursor to a picture file when the cursor is on a webpage. I\'ve seen sites that give you a simple code to do it but they alwa

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-12 04:24

    Yes, simply apply the following css code to your body tag (assuming you want effect for whole page):

    body {
        cursor: url('URL to image');
    }
    

    Further information:
    The image file must be 32x32 or smaller
    Internet explorer only supports .cur files

提交回复
热议问题