CSS3图像旋转叠加在我的文本上

时间:2013-11-30 00:03:05

标签: html wordpress css3

当我将鼠标悬停在它上面时,我试图让背景图像旋转。但与此同时,我希望图片顶部的链接文字不要旋转。

我让它半工作,但是当图像旋转时,文本隐藏在它后面。有时你会将鼠标悬停在链接上,图像不会旋转。有没有办法实现这个目标?

JS小提琴:http://bit.ly/1b9bpiJ

开发网站:http://briggs.honeycombsites.com/

2 个答案:

答案 0 :(得分:2)

稍微修改了Zeaklous的优秀答案。

为避免文本反向旋转,请勿旋转基本div。将背景放在一个伪元素中并旋转它。

div.button {
    width:130px;
    height:130px;
    position:relative;
    float: left;
    margin-right: 20px;
    overflow:hidden;
}
div.button:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;    
    background: url('http://briggs.honeycombsites.com//wp-content/themes/briggs/images/btn_contact.png');
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    z-index: -1;
}
.button:hover:after {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}
div.button a {
    color: #CFCAB4;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-shadow: 1px 1px 1px #333333;
    width: 100%; height:80%;
    text-transform: uppercase;
    position:absolute;
    top:50%; margin-top:-40%;
    left:50%; margin-left:-50%;
}
div.button:hover a {
    color: #fff;
}
div.button a span {
    border-bottom: 1px solid #CFCAB4;
    display: inline-block;
    font-size: 12px;
    line-height: normal;
    margin-bottom: 7px;
    text-shadow: none;
}

updated demo

在上面的回答中,我忘记了之后

中未经编造的变换
.button:hover:after {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
    transform:rotate(360deg);
}

另外,由于某种原因,firefox和IE中的设计中断了;跨度的字体需要设置得更高一点:

edited demo

答案 1 :(得分:1)

我理解为什么要以这种方式设置代码,但transform有时会产生一些有趣的无意影响。在你的情况下,它以某种方式影响z-index,我不确定如何解决它

说到这里,我就是这样做的,这对我来说更简单。它涉及将文本放在旋转元素内,但同时向相反方向旋转文本以保持文本直立

/* Updated HTML */
<div class="button">
    <a href="#"><span>Contact Us</span>1.800 444.1515</a>
</div>

/* CSS */
div.button {
    width:130px;
    height:130px;
    position:relative;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    float: left;
    margin-right: 20px;
    overflow:hidden;
    background: url('wp-content/themes/briggs/images/btn_contact.png');
}
div.button:hover {
    -webkit-transform:rotate(360deg);
    -moz-transform:rotate(360deg);
    -o-transform:rotate(360deg);
}
div.button a {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    color: #CFCAB4;
    font-size: 24px;
    line-height: 26px;
    text-align: center;
    text-shadow: 1px 1px 1px #333333;
    width: 100%; height:80%;
    text-transform: uppercase;
    position:absolute;
    top:50%; margin-top:-40%;
    left:50%; margin-left:-50%;
}
div.button:hover a {
    color: #fff;
    -webkit-transform:rotate(-360deg);
    -moz-transform:rotate(-360deg);
    -o-transform:rotate(-360deg);    
}
div.button a span {
    border-bottom: 1px solid #CFCAB4;
    display: inline-block;
    font-size: 12px;
    line-height: normal;
    margin-bottom: 7px;
    text-shadow: none;
}

Demo here

如果您对我的方法有任何疑问,请与我们联系