在悬停时使用CSS转换时闪烁的div

时间:2013-09-17 08:41:46

标签: html css css3 hover transform

我在推文(以及Facebook之类)按钮上发了div。当我将鼠标悬停在div(按钮)上方时,我希望它向上移动,这样您就可以按下真实的推文按钮。我尝试了以下内容。

HTML:

<div class="tweet-bttn">Tweet</div>         
<div class="tweet-widget">
    <a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>
    <script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</script>
</div>

CSS:

.tweet-bttn{
    position: relative;
    top: -30px;
    left: -10px;
    display:block;
    opacity: 1;
    width: 80px;
    padding: 10px 12px;
    margin:0px;
    z-index:3;}

.tweet-bttn:hover{
    -webkit-animation-name: UpTweet;
    -moz-animation-name: UpTweet;
    -o-animation-name: UpTweet;
    animation-name: UpTweet;
    -webkit-animation-duration:.5s;
    -moz-animation-duration:.5s;
    animation-duration:.5s;
    -webkit-transition: -webkit-transform 200ms ease-in-out;
    -moz-transition: -moz-transform 200ms ease-in-out;
    -o-transition: -o-transform 200ms ease-in-out;
    transition: transform 200ms ease-in-out;}

@-webkit-keyframes UpTweet {
    0% {
        -webkit-transform: translateY(0);
    }   
    80% {
        -webkit-transform: translateY(-55px);
    }
    90% {
        -webkit-transform: translateY(-47px);
    }
    100% {
        -webkit-transform: translateY(-50px);
    }
    ... and all other browser pre-fixes.
}

我不确定出了什么问题。它看起来就像我悬停时一样,它会移动,但是如果我将光标移动一个像素,它就必须进行新的计算,这会导致闪烁。

1 个答案:

答案 0 :(得分:6)

当您使用transitions

简单地完成上述操作时,我不知道您为什么需要动画

诀窍是在父级悬停上移动子元素

Demo

div {
    margin: 100px;
    position: relative;
    border: 1px solid #aaa;
    height: 30px;
}

div span {
    position: absolute;
    left: 0;
    width: 100px;
    background: #fff;
    top: 0;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
    transition: all 1s;
}

div span:nth-of-type(1) {
/* Just to be sure the element stays above the 
   content to be revealed */
    z-index: 1;
}

div:hover span:nth-of-type(1) { /* Move span on parent hover */
    top: -40px;
}

说明:首先我们将span包裹在div元素position: relative;内  之后我们在transition上使用span,这将有助于我们平滑animation的流量,现在我们将position: absolute;left: 0;一起使用,这将叠加元素相互之间,我们使用z-index来确保第一个元素覆盖第二个元素。

现在终于,我们移动了第一个span,我们通过使用nth-of-type(1)选择它,这只是嵌套在div内的第一个孩子,我们分配top: -40px;将在父div悬停时转移。