如何在悬停 Google Plus One 按钮时更改光标样式
我想在用户悬停 Google“+1”按钮时更改光标样式。 我尝试使用 div
标签并添加 style
属性,但它不起作用。
<div class="g-plusone" data-size="tall" style="cursor:wait" ></div>
<script type="text/javascript">
(function() {
var po = document.createElement('script');
po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(po, s);
})();
</script>
我想我们需要在他们的 js 代码中添加一些东西。
I want to change the cursor style when user hovers the Google "+1" button.
I tried to use the div
tag and add the style
attribute, but it's not working.
<div class="g-plusone" data-size="tall" style="cursor:wait" ></div>
<script type="text/javascript">
(function() {
var po = document.createElement('script');
po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(po, s);
})();
</script>
I guess we need to add something to their js code.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
+1 是一个具有以下类的按钮:
class="esw eswd"
,悬停时,这些类:class="esw eswd eswh"
。你可以用 jQuery 获取这个元素并控制它:例如:
+1 is a button with these classes:
class="esw eswd"
, and when hovered, these:class="esw eswd eswh"
. you can get this element with jQuery and control it:for example: