在我的图标上方绘制蓝色小方块
如何在鼠标图标的概述上绘制一个小蓝色方块,如下所示
how to draw a small blue square on the overview of my icon for my mouse like this
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在鼠标图标的概述上绘制一个小蓝色方块,如下所示
how to draw a small blue square on the overview of my icon for my mouse like this
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
CSS 到目前为止要容易得多,尽管我什至不能 100% 确定您正在寻找的路线,因为问题很模糊并且标签很丰富。
话虽这么说,请尝试一下:
以及强制性演示: http://jsfiddle.net/xCU74/
CSS is by far easier, though I'm not even 100% sure the route you're looking for since the question is vague and the tags are plentiful.
That being said, give this a whirl:
And the obligatory demo: http://jsfiddle.net/xCU74/
如果你想要一个仅 CSS 的解决方案,这将有效:
If you want a CSS-only solution, this will work:
在页面的样式部分或 css 文件中:
In the style section of your page or in the css file:
试试这个:
小提琴:http://jsfiddle.net/maniator/uEQqB/
更新< /strong>
没有内联 js,因为下面的注释:
js:
这是上面的小提琴: http:// jsfiddle.net/maniator/vy6QZ/
try this:
fiddle: http://jsfiddle.net/maniator/uEQqB/
update
without inline js, because of comments below:
js:
and here is the fiddle for above: http://jsfiddle.net/maniator/vy6QZ/
正如其他人提到的,您可以仅使用 CSS 来完成此操作。
对于任何想要 jQuery 解决方案的人:
As others have mentioned, you can do this using only CSS.
For anyone wanting a jQuery solution: