0

我想将图像精灵用于悬停动作,但我已经研究了一个小时并且无法正确处理。span 元素video-play-q-right将精灵作为其背景。

这是我的精灵:

在此处输入图像描述

这是div的屏幕截图:

在此处输入图像描述

这是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;
}
4

1 回答 1

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>
于 2012-09-26T12:51:45.990 回答