如下页所示:http://www.reithalle.sg/
我想在外接div上使用* .gif或* .png图像作为光标。 Firebug告诉我,css正在被正确解释并且正在找到图像。
从来没有显示过光标图像(在我测试过的浏览器中都没有)。
cursor: url('http://www.reithalle.sg/reithalle/wp-content/themes/twentyten/images/Ja.gif'), pointer;
有没有人知道为什么它不起作用?
答案 0 :(得分:-1)
您需要将光标下载到您的网站文件夹中并执行它:
.cursor {
cursor: url(cursor/anynameyougiveit.gif) auto;
}
如果你使用像wordpress这样的东西,网址是这样的:
.cursor {
cursor: url('http://www.example.com/wp-content/themes/theThemeYouUse/images/Ja.gif') auto;
}
希望这也适合你