Javascript-firefox:如何从本地 png 文件设置自定义光标?
如何从本地图像文件为当前页面设置自定义光标?基本上我需要使用 javascript 以编程方式更改为不同的光标,但光标本地存储在我的硬盘驱动器上。
how do you set a custom cursor for the current page from a local image file? basically I need to change to a different cursor programmatically using javascript, but the cursor is stored locally on my hard drive.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不能(但见下文),因为无法从其他协议访问或引用
file://
。您可以将图像转换为 base64- dataURI,并使用它代替
file://..../cursor.png
:您可以在此页面<上传任何文件并将其转换为base-64格式/a>.修剪空白,并添加前缀
data:image/png;base64,
。除了使用 data-URI,还可以将图像上传到文件主机并嵌入,如下所示:
另请参阅:
cursor
属性cursor
属性的 URL 值You can't (but see below), because the
file://
cannot be accessed or referred from other protocols.You can convert your image to a base64-dataURI, and use it instead of
file://..../cursor.png
:You can upload and convert any file to base-64 format at this page. Trim the whitespace, and prefix
data:image/png;base64,
.Instead of using data-URIs, an image can also be uploaded to a file host, and embedded as follows:
See also:
cursor
propertycursor
property