我正在尝试创建一个简单的动画,其中背景颜色滑动到位。到目前为止它是成功的,但有一个主要问题:块上的文字移动,我无法弄清楚如何阻止它。
我可以定位上面的文字,但是我也需要改变颜色,如果我在jQuery中这样做会造成混乱。
CSS:
.button {
display: block;
width: 130px;
height: 40px;
cursor: pointer;
position: fixed;
z-index: 1;
top: 15px;
left: 15px;
text-align: center;
color: #FFF;
overflow: hidden;
text-decoration: none;
font-size: 23px;
text-transform: lowercase;
font-family: Helvetica, Arial, sans-serif;
background: #FFF
} .button:hover { color: #FFF }
.button h1 {
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 130px;
height: 40px;
font-size: 23px;
margin: 0;
background-color: blue
}
.button h1.back {
z-index: 999;
color: #000;
margin-left: -130px;
overflow: hidden;
background-color: red
}
.button h1 span {
position: absolute;
left: 0;
top: 10%;
width: 130px;
height: 40px;
text-align: center
}
然后是jQuery:
$('.button').hover(function() {
var el = $(this);
el.children('.back').animate({
marginLeft: '0'
}, 30, 'swing');
}, function() {
var el = $(this);
el.children('.back').animate({
marginLeft: '-130px'
}, 30, 'swing');
});
它创造了一个伟大的动画。但是文本,它随之滑动。如何在没有颜色变化的情况下防止这种情况发生?
这是jsfiddle:http://jsfiddle.net/WERFJ/
答案 0 :(得分:2)
两件事:
http://jsfiddle.net/WERFJ/13/可能需要稍微调整,但这就是你所追求的效果。基本上我只是从h1中取出文本并在其上放置一个z-index,所以它始终在前面,然后使用.button:hover span { color: #000 }
使用h1来执行此操作不是正确使用h1。我只会使用常规div。
答案 1 :(得分:0)
您可以将文字放在它的唯一图层上:
<a href="#" class="button">
<h1 class="front"><span></span></h1>
<h1 class="back"><span></span></h1>
<h1 class="text"><span>hello</span></h1>
</a>
也许有完整的文字效果:
$(function() {
var $text = $('.text');
$('.button').hover(function() {
$(this).children('.back').animate({
marginLeft: '0',
}, 100, 'swing', function(){
$text.css('color','white');
});
}, function() {
$(this).children('.back').animate({
marginLeft: '-130px'
}, 100, 'swing', function(){
$text.css('color','black');
});
});
});