我如何使我的Opera浏览器运行鼠标指针

时间:2017-02-12 21:30:53

标签: html css html5 css3 frontend

因此,我开发了一个基本网站,可在旧功能手机和智能手机上运行。现在,在功能手机上,有时会出现一个鼠标指针,通过它可以让用户更容易滚动并选择网站上的某些选项。我试过复制过程,但我无法这样做。它总是随机发生。我很想知道我可以添加到我的代码中以使鼠标指针永久激活。请记住,我不能使用Javascript作为我正在测试的功能手机没有JS,这也是我的大多数用户的情况。

This is without the mouse pointer. The user is only getting an option to highlight the various options they can click

The pointer appears automatically when the user clicks on different options. There is no set pattern to it.

1 个答案:

答案 0 :(得分:0)

您只需在CSS中使用cursor: pointer即可显示要显示光标的元素。对于整个文件,那将是:

body {
  cursor: pointer;
}

希望这有帮助!