1

我使用了推拉门技术,在这里解释:

http://www.oscaralexander.com/tutorials/how-to-make-sexy-buttons-with-css.html

除了一个例外,我决定再添加一张图片来实现“悬停”效果。

我的代码适用于所有浏览器,除了 IE8(可能还有更早的版本)。

a.submit-button:activea.submit-button:active 跨度被“悬停”简单地阻止并且永远不会工作。

有谁知道这个解决方案?

这是测试页面:http ://websvit.com/temp/button.html

提前非常感谢!

<style type="text/css">

.clear { /* generic container (i.e. div) for floating buttons */
    overflow: hidden;
    width: 100%;
}

a.submit-button {
    background: transparent url('images/button-1b.png') no-repeat scroll top right;
    color: #fff;
    display: block;
    float: left;
    font: bold 13px sans-serif, arial;
    height: 28px;
    margin-right: 6px;
    padding-right: 18px; /* sliding doors padding */
    text-decoration: none;
    outline: none;
}

a.submit-button span {
    background: transparent url('images/button-1a.png') no-repeat;
    display: block;
    line-height: 14px;
    padding: 6px 0 8px 24px;
} 

a.submit-button:hover {
    background-position: right -28px;
    outline: none;  /* hide dotted outline in Firefox */
    color: #fff;
}
a.submit-button:hover span {
    background-position: 0px -28px;
} 

a.submit-button:active {
    background-position: right -56px;
    color: #e5e5e5;
    outline: none;
}
a.submit-button:active span {
    background-position: 0px -56px;
    padding: 7px 0 7px 24px; /* push text down 1px */
} 

</style>

这是按钮:

<div class="clear">
<a class="submit-button" href="#" onclick="this.blur();"><span>Hello All</span></a>
</div>

替代文字 http://websvit.com/temp/button-1a.png 替代文字 http://websvit.com/temp/button-1b.png

4

1 回答 1

1

所有浏览器,除了 IE8(可能还有更早的版本)。

我在 IE7 中检查了你的级长。IE6 运行正常,但你有那个讨厌的 png 透明度问题。

您可以尝试使用 :focus 伪类。IE8 可能会尊重它不尊重 :active 的地方。

于 2010-05-10T15:56:55.757 回答