gpt4 book ai didi

css - 使用游标 Sprite

转载 作者:技术小花猫 更新时间:2023-10-29 11:12:41 25 4
gpt4 key购买 nike

.fancybox-inner {
overflow: hidden;
background-color:#EEE;
cursor: //url to an independent cursor image
}

但是如果我的光标 (3) 都在一个 css sprite 图像中,我该如何引用光标属性的背景位置、宽度和高度值。

有点像

cursor .fancybox-inner OR .fancybox-inner:hover cursor{
background: url(../img/cursors.png) no-repeat;
background-position: -32px 0;
width: 16px;
height: 16px;
}

最佳答案

虽然光标属性允许 x 和 y 值,但它们不用于背景位置,而是用于光标热点的坐标

这是游标属性的语法:(参见 mozilla)

cursor:  [<uri> [<x> <y>]?,]* keyword

例如:

.foo  {
cursor: auto;
cursor: url(cursor1.png) 4 12, auto;
}

The example will set the hotspot to be the pixel at (4,12) from the top left (0,0).

关于css - 使用游标 Sprite ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22377707/

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