如何使用图像精灵悬停span元素

时间:2012-09-26 12:40:36

标签: html css hover css-sprites

我想使用图像精灵进行悬停动作,但我已经在它上面工作了一个小时而且无法正确使用它。 span元素video-play-q-right以精灵为背景。

这是我的精灵:

enter image description here

以下是div的截图:

enter image description here

这是html:

    <div class="video-box">
         <div class="video-img">
             <a href="#" onclick="window.open('http://url.html','photoessay','scrollbars=no,resizable=yes,width=800,height=600')">
             <img src="resources-na/images/video.jpg" width="200" height="155" border="1">
             <span class="video-play-q-right">play</span></a>
        </div>
        <div class="video-text">
            <p><strong> of Water</strong>.<br /> water's properties. (05:43 min)
            <a href="#" onclick="window.open('http://url.html','photoessay','scrollbars=no,resizable=yes,width=850,height=722')">... View</a></p>
        </div>
    </div>

这是CSS:

.video-box{
    padding-right: 20px;
    float: left;
    width: 200px;
}
.video-img {
    background-color: #EEEEEE;
    border: 1px solid #DDDDDD;
    margin-bottom: 0 !important;
    padding: 4px;
    width: 200px;
    height: 155px;
}

.video-play-q-right {
    background: url("../images/video-play-q-big.png") no-repeat scroll 0 0 transparent;
    background-position: center top;
    height: 50px;
    position: absolute;
    text-indent: -9999em;
    width: 50px;
    left: 321px;
    top: 127px;
}

a.video-play-q-right:hover span{
    background-position: center bottom;
}

1 个答案:

答案 0 :(得分:2)

为什么a.video-play-q-right:hover span

与video-play-q-right类没有任何关联。尝试将其替换为a:hover .video-play-q-right


a.my-class:hover span表示“包含a”的类my-class的链接(span元素)。

所以它的目标是:

<a href="..." class="my-class"><span>Some text</span></a>

但不是这样:

<a href="..."><span class="my-class">Some text</span></a>