gpt4 book ai didi

javascript - 悬停时共享按钮

转载 作者:行者123 更新时间:2023-11-28 17:59:06 24 4
gpt4 key购买 nike

我一直在尝试让共享按钮在鼠标悬停在文章“Mashable style”上时出现,但我似乎做不好。任何帮助将不胜感激。

<div class="c-container">
<article class="c-news">
<header>
<a href="#">
<img src="http://a_really_long_url.jpg"
alt="post-image" class="post-image">
</a>
</header>

jsFiddle

最佳答案

您需要使用 :hover CSS 选择器:

  • 首先隐藏元素:

    .st_facebook_hcount, .st_twitter_hcount {
    position:relative;
    display:none; /* Hide It*/
    width:6rem;
    top: -1.2rem;
    left:18rem;
    }
  • 然后设置:hover显示:

    .c-news:hover .st_facebook_hcount, .c-news:hover .st_twitter_hcount {
    display:inline-block;
    }

演示 http://jsfiddle.net/nJRtm/6/

关于javascript - 悬停时共享按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20807134/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com