gpt4 book ai didi

css - 光标指向左下角

转载 作者:行者123 更新时间:2023-11-28 09:24:34 24 4
gpt4 key购买 nike

div{
width:200px; height:200px; background:red;
cursor:url(images/eyedropper.png) 25 25, auto;
}


<div></div>

enter image description here

我有一个像上面一样的光标吸管图像

我的问题是这个图像指向左下角,但光标默认指向左上角。有什么方法可以将指针更改为左下角或移动背景图像吗?

最佳答案

如果不是那么必要,你可以在 photoshop 中改变它的方向如果你想改变方向使用变换旋转并根据需要设置 Angular

  div{
width:200px; height:200px; background:red;
position:relative;
}
.cursor{ position:absolute;cursor:url(images/eyedropper.png) 25 25, auto;
transform: rotate(90deg);}

<div> <div class="cursor"></div></div>

关于css - 光标指向左下角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25946388/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com